File manager - Edit - /home/aussies6/public_html/seafoodwarehouse.com.au/rest-api.tar
Back
endpoints/class-wp-rest-attachments-controller.php 0000644 00000116733 15213254037 0016473 0 ustar 00 <?php /** * REST API: WP_REST_Attachments_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core controller used to access attachments via the REST API. * * @since 4.7.0 * * @see WP_REST_Posts_Controller */ class WP_REST_Attachments_Controller extends WP_REST_Posts_Controller { /** * Registers the routes for attachments. * * @since 5.3.0 * * @see register_rest_route() */ public function register_routes() { parent::register_routes(); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\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 object.' ), 'type' => 'integer', ), 'action' => array( 'type' => 'string', 'enum' => array( 'create-image-subsizes' ), 'required' => true, ), ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\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 * * @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'; } $media_types = $this->get_media_types(); if ( ! empty( $request['media_type'] ) && isset( $media_types[ $request['media_type'] ] ) ) { $query_args['post_mime_type'] = $media_types[ $request['media_type'] ]; } if ( ! empty( $request['mime_type'] ) ) { $parts = explode( '/', $request['mime_type'] ); if ( isset( $media_types[ $parts[0] ] ) && in_array( $request['mime_type'], $media_types[ $parts[0] ], true ) ) { $query_args['post_mime_type'] = $request['mime_type']; } } // 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() ) ); } 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']['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; } $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 ); if ( defined( 'REST_REQUEST' ) && 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(); if ( ! empty( $files ) ) { $file = $this->upload_from_file( $files, $headers ); } else { $file = $this->upload_from_data( $request->get_body(), $headers ); } 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 ( 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 ); 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, ); } /** * 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 ) ); } $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'] ); $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 ); $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 * * @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' ); $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 ) ); } // Check if we need to do anything. $rotate = 0; $crop = false; if ( ! empty( $request['rotation'] ) ) { // Rotation direction: clockwise vs. counter clockwise. $rotate = 0 - (int) $request['rotation']; } if ( isset( $request['x'], $request['y'], $request['width'], $request['height'] ) ) { $crop = true; } if ( ! $rotate && ! $crop ) { 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 ) ); } 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 ) ); } } if ( $crop ) { $size = $image_editor->get_size(); $crop_x = round( ( $size['width'] * floatval( $request['x'] ) ) / 100.0 ); $crop_y = round( ( $size['height'] * floatval( $request['y'] ) ) / 100.0 ); $width = round( ( $size['width'] * floatval( $request['width'] ) ) / 100.0 ); $height = round( ( $size['height'] * floatval( $request['height'] ) ) / 100.0 ); $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 ) ); } } // 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 sub-directory 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; } // Create new attachment post. $new_attachment_post = array( 'post_mime_type' => $saved['mime-type'], 'guid' => $uploads['url'] . "/$filename", 'post_title' => $image_name, 'post_content' => '', ); // Copy post_content, post_excerpt, and post_title from the edited image's attachment post. $attachment_post = get_post( $attachment_id ); if ( $attachment_post ) { $new_attachment_post['post_content'] = $attachment_post->post_content; $new_attachment_post['post_excerpt'] = $attachment_post->post_excerpt; $new_attachment_post['post_title'] = $attachment_post->post_title; } $new_attachment_id = wp_insert_attachment( wp_slash( $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; } // Copy the image alt text from the edited image. $image_alt = 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 ( defined( 'REST_REQUEST' ) && 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 * * @param WP_Post $post Attachment object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $post, $request ) { $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 ); } /** * 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 object, as it exists in the database.' ), 'type' => 'string', 'context' => array( 'edit' ), ), 'rendered' => array( 'description' => __( 'HTML description for the object, 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 * * @param array $data Supplied file data. * @param array $headers HTTP headers from the request. * @return array|WP_Error Data from wp_handle_sideload(). */ protected function upload_from_data( $data, $headers ) { 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 ); 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 = <the characters in token, followed by "*"> * * @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 ( strpos( $value, ';' ) === false ) { continue; } list( $type, $attr_parts ) = explode( ';', $value, 2 ); $attr_parts = explode( ';', $attr_parts ); $attributes = array(); foreach ( $attr_parts as $part ) { if ( strpos( $part, '=' ) === false ) { 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 ( substr( $filename, 0, 1 ) === '"' && substr( $filename, -1, 1 ) === '"' ) { $filename = substr( $filename, 1, -1 ); } } return $filename; } /** * Retrieves the query params for collections of attachments. * * @since 4.7.0 * * @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 = $this->get_media_types(); $params['media_type'] = array( 'default' => null, 'description' => __( 'Limit result set to attachments of a particular media type.' ), 'type' => 'string', 'enum' => array_keys( $media_types ), ); $params['mime_type'] = array( 'default' => null, 'description' => __( 'Limit result set to attachments of a particular MIME type.' ), 'type' => 'string', ); return $params; } /** * Handles an upload via multipart/form-data ($_FILES). * * @since 4.7.0 * * @param array $files Data from the `$_FILES` superglobal. * @param array $headers HTTP headers from the request. * @return array|WP_Error Data from wp_handle_upload(). */ protected function upload_from_file( $files, $headers ) { 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 ); 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 * * @return array */ protected function get_edit_media_item_args() { return array( 'rotation' => array( 'description' => __( 'The amount to rotate the image clockwise in degrees.' ), '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.' ), 'type' => 'number', 'minimum' => 0, 'maximum' => 100, ), 'y' => array( 'description' => __( 'As a percentage of the image, the y position to start the crop from.' ), 'type' => 'number', 'minimum' => 0, 'maximum' => 100, ), 'width' => array( 'description' => __( 'As a percentage of the image, the width to crop the image to.' ), 'type' => 'number', 'minimum' => 0, 'maximum' => 100, ), 'height' => array( 'description' => __( 'As a percentage of the image, the height to crop the image to.' ), 'type' => 'number', 'minimum' => 0, 'maximum' => 100, ), 'src' => array( 'description' => __( 'URL to the edited image file.' ), 'type' => 'string', 'format' => 'uri', 'required' => true, ), ); } } endpoints/class-wp-rest-autosaves-controller.php 0000644 00000031240 15213254037 0016157 0 ustar 00 <?php /** * REST API: WP_REST_Autosaves_Controller class. * * @package WordPress * @subpackage REST_API * @since 5.0.0 */ /** * Core class used to access autosaves via the REST API. * * @since 5.0.0 * * @see WP_REST_Revisions_Controller * @see WP_REST_Controller */ class WP_REST_Autosaves_Controller extends WP_REST_Revisions_Controller { /** * Parent post type. * * @since 5.0.0 * @var string */ private $parent_post_type; /** * Parent post controller. * * @since 5.0.0 * @var WP_REST_Controller */ private $parent_controller; /** * Revision controller. * * @since 5.0.0 * @var WP_REST_Controller */ private $revisions_controller; /** * The base of the parent controller's route. * * @since 5.0.0 * @var string */ private $parent_base; /** * Constructor. * * @since 5.0.0 * * @param string $parent_post_type Post type of the parent. */ public function __construct( $parent_post_type ) { $this->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; $this->revisions_controller = new WP_REST_Revisions_Controller( $parent_post_type ); $this->rest_namespace = 'wp/v2'; $this->rest_base = 'autosaves'; $this->parent_base = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name; } /** * Registers the routes for autosaves. * * @since 5.0.0 * * @see register_rest_route() */ public function register_routes() { register_rest_route( $this->rest_namespace, '/' . $this->parent_base . '/(?P<id>[\d]+)/' . $this->rest_base, array( 'args' => array( 'parent' => array( 'description' => __( 'The ID for the parent of the object.' ), '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->rest_namespace, '/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base . '/(?P<id>[\d]+)', array( 'args' => array( 'parent' => array( 'description' => __( 'The ID for the parent of the object.' ), 'type' => 'integer', ), 'id' => array( 'description' => __( 'The ID for the object.' ), '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( 'DOING_AUTOSAVE' ) ) { define( 'DOING_AUTOSAVE', true ); } $post = get_post( $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(); if ( ( 'draft' === $post->post_status || 'auto-draft' === $post->post_status ) && $post->post_author == $user_id ) { // 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. $autosave_id = $this->create_post_autosave( (array) $prepared_post ); } 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; } $response = array(); $parent_id = $parent->ID; $revisions = wp_get_post_revisions( $parent_id, array( 'check_enabled' => false ) ); foreach ( $revisions as $revision ) { if ( false !== strpos( $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 * * @param array $post_data Associative array containing the post data. * @return mixed The autosave revision ID or WP_Error. */ public function create_post_autosave( $post_data ) { $post_id = (int) $post_data['ID']; $post = get_post( $post_id ); if ( is_wp_error( $post ) ) { return $post; } $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 ( $old_autosave ) { $new_autosave = _wp_post_revision_data( $post_data, true ); $new_autosave['ID'] = $old_autosave->ID; $new_autosave['post_author'] = $user_id; // If the new autosave has the same content as the post, delete the autosave. $autosave_is_different = false; 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; } } if ( ! $autosave_is_different ) { wp_delete_post_revision( $old_autosave->ID ); return new WP_Error( 'rest_autosave_no_changes', __( 'There is nothing to save. The autosave and the post content are the same.' ), array( 'status' => 400 ) ); } /** This filter is documented in wp-admin/post.php */ do_action( 'wp_creating_autosave', $new_autosave ); // wp_update_post() expects escaped array. return wp_update_post( wp_slash( $new_autosave ) ); } // Create the new autosave as a special post revision. return _wp_put_post_revision( $post_data, true ); } /** * Prepares the revision for the REST response. * * @since 5.0.0 * * @param WP_Post $post Post revision object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $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 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' ) ), ); } } endpoints/class-wp-rest-block-directory-controller.php 0000644 00000022642 15213254037 0017247 0 ustar 00 <?php /** * REST API: WP_REST_Block_Directory_Controller class * * @package WordPress * @subpackage REST_API * @since 5.5.0 */ /** * Controller which provides REST endpoint for the blocks. * * @since 5.5.0 * * @see WP_REST_Controller */ class WP_REST_Block_Directory_Controller extends WP_REST_Controller { /** * Constructs the controller. */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'block-directory'; } /** * Registers the necessary REST API routes. */ public function register_routes() { register_rest_route( $this->namespace, '/' . $this->rest_base . '/search', 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' ), ) ); } /** * Checks whether a given request has permission to install and activate plugins. * * @since 5.5.0 * * @param WP_REST_Request $request Full details about the request. * * @return WP_Error|bool True if the request has permission, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { if ( ! current_user_can( 'install_plugins' ) || ! current_user_can( 'activate_plugins' ) ) { return new WP_Error( 'rest_block_directory_cannot_view', __( 'Sorry, you are not allowed to browse the block directory.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Search and retrieve blocks metadata * * @since 5.5.0 * * @param WP_REST_Request $request Full details about the request. * * @return WP_Error|WP_REST_Response Response object on success, or WP_Error object on failure. */ public function get_items( $request ) { require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; require_once ABSPATH . 'wp-admin/includes/plugin.php'; $response = plugins_api( 'query_plugins', array( 'block' => $request['term'], 'per_page' => $request['per_page'], 'page' => $request['page'], ) ); if ( is_wp_error( $response ) ) { $response->add_data( array( 'status' => 500 ) ); return $response; } $result = array(); foreach ( $response->plugins as $plugin ) { // If the API returned a plugin with empty data for 'blocks', skip it. if ( empty( $plugin['blocks'] ) ) { continue; } $data = $this->prepare_item_for_response( $plugin, $request ); $result[] = $this->prepare_response_for_collection( $data ); } return rest_ensure_response( $result ); } /** * Parse block metadata for a block, and prepare it for an API repsonse. * * @since 5.5.0 * * @param array $plugin The plugin metadata. * @param WP_REST_Request $request Request object. * * @return WP_Error|WP_REST_Response Response object on success, or WP_Error object on failure. */ public function prepare_item_for_response( $plugin, $request ) { // There might be multiple blocks in a plugin. Only the first block is mapped. $block_data = reset( $plugin['blocks'] ); // A data array containing the properties we'll return. $block = array( 'name' => $block_data['name'], 'title' => ( $block_data['title'] ? $block_data['title'] : $plugin['name'] ), 'description' => wp_trim_words( $plugin['description'], 30, '...' ), 'id' => $plugin['slug'], 'rating' => $plugin['rating'] / 20, 'rating_count' => intval( $plugin['num_ratings'] ), 'active_installs' => intval( $plugin['active_installs'] ), 'author_block_rating' => $plugin['author_block_rating'] / 20, 'author_block_count' => intval( $plugin['author_block_count'] ), 'author' => wp_strip_all_tags( $plugin['author'] ), 'icon' => ( isset( $plugin['icons']['1x'] ) ? $plugin['icons']['1x'] : 'block-default' ), 'last_updated' => gmdate( 'Y-m-d\TH:i:s', strtotime( $plugin['last_updated'] ) ), 'humanized_updated' => sprintf( /* translators: %s: Human-readable time difference. */ __( '%s ago' ), human_time_diff( strtotime( $plugin['last_updated'] ) ) ), ); $this->add_additional_fields_to_object( $block, $request ); $response = new WP_REST_Response( $block ); $response->add_links( $this->prepare_links( $plugin ) ); return $response; } /** * Generates a list of links to include in the response for the plugin. * * @since 5.5.0 * * @param array $plugin The plugin data from WordPress.org. * * @return array */ protected function prepare_links( $plugin ) { $links = array( 'https://api.w.org/install-plugin' => array( 'href' => add_query_arg( 'slug', urlencode( $plugin['slug'] ), rest_url( 'wp/v2/plugins' ) ), ), ); $plugin_file = $this->find_plugin_for_slug( $plugin['slug'] ); if ( $plugin_file ) { $links['https://api.w.org/plugin'] = array( 'href' => rest_url( 'wp/v2/plugins/' . substr( $plugin_file, 0, - 4 ) ), 'embeddable' => true, ); } return $links; } /** * Finds an installed plugin for the given slug. * * @since 5.5.0 * * @param string $slug The WordPress.org directory slug for a plugin. * * @return string The plugin file found matching it. */ protected function find_plugin_for_slug( $slug ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; $plugin_files = get_plugins( '/' . $slug ); if ( ! $plugin_files ) { return ''; } $plugin_files = array_keys( $plugin_files ); return $slug . '/' . reset( $plugin_files ); } /** * Retrieves the theme's schema, conforming to JSON Schema. * * @since 5.5.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' => 'block-directory-item', 'type' => 'object', 'properties' => array( 'name' => array( 'description' => __( 'The block name, in namespace/block-name format.' ), 'type' => 'string', 'context' => array( 'view' ), ), 'title' => array( 'description' => __( 'The block title, in human readable format.' ), 'type' => 'string', 'context' => array( 'view' ), ), 'description' => array( 'description' => __( 'A short description of the block, in human readable format.' ), 'type' => 'string', 'context' => array( 'view' ), ), 'id' => array( 'description' => __( 'The block slug.' ), 'type' => 'string', 'context' => array( 'view' ), ), 'rating' => array( 'description' => __( 'The star rating of the block.' ), 'type' => 'integer', 'context' => array( 'view' ), ), 'rating_count' => array( 'description' => __( 'The number of ratings.' ), 'type' => 'integer', 'context' => array( 'view' ), ), 'active_installs' => array( 'description' => __( 'The number sites that have activated this block.' ), 'type' => 'string', 'context' => array( 'view' ), ), 'author_block_rating' => array( 'description' => __( 'The average rating of blocks published by the same author.' ), 'type' => 'integer', 'context' => array( 'view' ), ), 'author_block_count' => array( 'description' => __( 'The number of blocks published by the same author.' ), 'type' => 'integer', 'context' => array( 'view' ), ), 'author' => array( 'description' => __( 'The WordPress.org username of the block author.' ), 'type' => 'string', 'context' => array( 'view' ), ), 'icon' => array( 'description' => __( 'The block icon.' ), 'type' => 'string', 'format' => 'uri', 'context' => array( 'view' ), ), 'last_updated' => array( 'description' => __( 'The date when the block was last updated, in fuzzy human readable format.' ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view' ), ), 'humanized_updated' => array( 'description' => __( 'The date when the block was last updated, in fuzzy human readable format.' ), 'type' => 'string', 'context' => array( 'view' ), ), ), ); return $this->add_additional_fields_schema( $this->schema ); } /** * Retrieves the search params for the blocks collection. * * @since 5.5.0 * * @return array Collection parameters. */ public function get_collection_params() { $query_params = parent::get_collection_params(); $query_params['context']['default'] = 'view'; $query_params['term'] = array( 'description' => __( 'Limit result set to blocks matching the search term.' ), 'type' => 'string', 'required' => true, 'minLength' => 1, ); unset( $query_params['search'] ); /** * Filter collection parameters for the block directory controller. * * @since 5.5.0 * * @param array $query_params JSON Schema-formatted collection parameters. */ return apply_filters( 'rest_block_directory_collection_params', $query_params ); } } endpoints/class-wp-rest-block-renderer-controller.php 0000644 00000013155 15213254037 0017050 0 ustar 00 <?php /** * Block Renderer REST API: WP_REST_Block_Renderer_Controller class * * @package WordPress * @subpackage REST_API * @since 5.0.0 */ /** * Controller which provides REST endpoint for rendering a block. * * @since 5.0.0 * * @see WP_REST_Controller */ class WP_REST_Block_Renderer_Controller extends WP_REST_Controller { /** * Constructs the controller. * * @since 5.0.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'block-renderer'; } /** * Registers the necessary REST API routes, one for each dynamic block. * * @since 5.0.0 * * @see register_rest_route() */ public function register_routes() { register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<name>[a-z0-9-]+/[a-z0-9-]+)', array( 'args' => array( 'name' => array( 'description' => __( 'Unique registered name for the block.' ), 'type' => 'string', ), ), array( 'methods' => array( WP_REST_Server::READABLE, WP_REST_Server::CREATABLE ), 'callback' => array( $this, 'get_item' ), 'permission_callback' => array( $this, 'get_item_permissions_check' ), 'args' => array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), 'attributes' => array( 'description' => __( 'Attributes for the block' ), 'type' => 'object', 'default' => array(), 'validate_callback' => static function ( $value, $request ) { $block = WP_Block_Type_Registry::get_instance()->get_registered( $request['name'] ); if ( ! $block ) { // This will get rejected in ::get_item(). return true; } $schema = array( 'type' => 'object', 'properties' => $block->get_attributes(), 'additionalProperties' => false, ); return rest_validate_value_from_schema( $value, $schema ); }, 'sanitize_callback' => static function ( $value, $request ) { $block = WP_Block_Type_Registry::get_instance()->get_registered( $request['name'] ); if ( ! $block ) { // This will get rejected in ::get_item(). return true; } $schema = array( 'type' => 'object', 'properties' => $block->get_attributes(), 'additionalProperties' => false, ); return rest_sanitize_value_from_schema( $value, $schema ); }, ), 'post_id' => array( 'description' => __( 'ID of the post context.' ), 'type' => 'integer', ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks if a given request has access to read blocks. * * @since 5.0.0 * * @param WP_REST_Request $request Request. * @return true|WP_Error True if the request has read access, WP_Error object otherwise. */ public function get_item_permissions_check( $request ) { global $post; $post_id = isset( $request['post_id'] ) ? intval( $request['post_id'] ) : 0; if ( 0 < $post_id ) { $post = get_post( $post_id ); if ( ! $post || ! current_user_can( 'edit_post', $post->ID ) ) { return new WP_Error( 'block_cannot_read', __( 'Sorry, you are not allowed to read blocks of this post.' ), array( 'status' => rest_authorization_required_code(), ) ); } } else { if ( ! current_user_can( 'edit_posts' ) ) { return new WP_Error( 'block_cannot_read', __( 'Sorry, you are not allowed to read blocks as this user.' ), array( 'status' => rest_authorization_required_code(), ) ); } } return true; } /** * Returns block output from block's registered render_callback. * * @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_item( $request ) { global $post; $post_id = isset( $request['post_id'] ) ? intval( $request['post_id'] ) : 0; if ( 0 < $post_id ) { $post = get_post( $post_id ); // Set up postdata since this will be needed if post_id was set. setup_postdata( $post ); } $registry = WP_Block_Type_Registry::get_instance(); $registered = $registry->get_registered( $request['name'] ); if ( null === $registered || ! $registered->is_dynamic() ) { return new WP_Error( 'block_invalid', __( 'Invalid block.' ), array( 'status' => 404, ) ); } $attributes = $request->get_param( 'attributes' ); // Create an array representation simulating the output of parse_blocks. $block = array( 'blockName' => $request['name'], 'attrs' => $attributes, 'innerHTML' => '', 'innerContent' => array(), ); // Render using render_block to ensure all relevant filters are used. $data = array( 'rendered' => render_block( $block ), ); return rest_ensure_response( $data ); } /** * Retrieves block's output schema, conforming to JSON Schema. * * @since 5.0.0 * * @return array Item schema data. */ public function get_item_schema() { if ( $this->schema ) { return $this->schema; } $this->schema = array( '$schema' => 'http://json-schema.org/schema#', 'title' => 'rendered-block', 'type' => 'object', 'properties' => array( 'rendered' => array( 'description' => __( 'The rendered block.' ), 'type' => 'string', 'required' => true, 'context' => array( 'edit' ), ), ), ); return $this->schema; } } endpoints/class-wp-rest-block-types-controller.php 0000644 00000043064 15213254037 0016410 0 ustar 00 <?php /** * REST API: WP_REST_Block_Types_Controller class * * @package WordPress * @subpackage REST_API * @since 5.5.0 */ /** * Core class used to access block types via the REST API. * * @since 5.5.0 * * @see WP_REST_Controller */ class WP_REST_Block_Types_Controller extends WP_REST_Controller { /** * Instance of WP_Block_Type_Registry. * * @since 5.5.0 * @var WP_Block_Type_Registry */ protected $block_registry; /** * Instance of WP_Block_Styles_Registry. * * @since 5.5.0 * @var WP_Block_Styles_Registry */ protected $style_registry; /** * Constructor. * * @since 5.5.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'block-types'; $this->block_registry = WP_Block_Type_Registry::get_instance(); $this->style_registry = WP_Block_Styles_Registry::get_instance(); } /** * Registers the routes for the objects of the controller. * * @since 5.5.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(), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<namespace>[a-zA-Z0-9_-]+)', 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<namespace>[a-zA-Z0-9_-]+)/(?P<name>[a-zA-Z0-9_-]+)', array( 'args' => array( 'name' => array( 'description' => __( 'Block name' ), 'type' => 'string', ), 'namespace' => array( 'description' => __( 'Block namespace' ), 'type' => 'string', ), ), 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' ) ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks whether a given request has permission to read post block types. * * @since 5.5.0 * * @param WP_REST_Request $request Full details about the request. * @return WP_Error|bool True if the request has read access, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { return $this->check_read_permission(); } /** * Retrieves all post block types, depending on user context. * * @since 5.5.0 * * @param WP_REST_Request $request Full details about the request. * @return WP_Error|WP_REST_Response Response object on success, or WP_Error object on failure. */ public function get_items( $request ) { $data = array(); $block_types = $this->block_registry->get_all_registered(); // Retrieve the list of registered collection query parameters. $registered = $this->get_collection_params(); $namespace = ''; if ( isset( $registered['namespace'] ) && ! empty( $request['namespace'] ) ) { $namespace = $request['namespace']; } foreach ( $block_types as $slug => $obj ) { if ( $namespace ) { list ( $block_namespace ) = explode( '/', $obj->name ); if ( $namespace !== $block_namespace ) { continue; } } $block_type = $this->prepare_item_for_response( $obj, $request ); $data[] = $this->prepare_response_for_collection( $block_type ); } return rest_ensure_response( $data ); } /** * Checks if a given request has access to read a block type. * * @since 5.5.0 * * @param WP_REST_Request $request Full details about the request. * @return WP_Error|bool True if the request has read access for the item, WP_Error object otherwise. */ public function get_item_permissions_check( $request ) { $check = $this->check_read_permission(); if ( is_wp_error( $check ) ) { return $check; } $block_name = sprintf( '%s/%s', $request['namespace'], $request['name'] ); $block_type = $this->get_block( $block_name ); if ( is_wp_error( $block_type ) ) { return $block_type; } return true; } /** * Checks whether a given block type should be visible. * * @since 5.5.0 * * @return WP_Error|bool True if the block type is visible, WP_Error otherwise. */ protected function check_read_permission() { 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_block_type_cannot_view', __( 'Sorry, you are not allowed to manage block types.' ), array( 'status' => rest_authorization_required_code() ) ); } /** * Get the block, if the name is valid. * * @since 5.5.0 * * @param string $name Block name. * @return WP_Block_Type|WP_Error Block type object if name is valid, WP_Error otherwise. */ protected function get_block( $name ) { $block_type = $this->block_registry->get_registered( $name ); if ( empty( $block_type ) ) { return new WP_Error( 'rest_block_type_invalid', __( 'Invalid block type.' ), array( 'status' => 404 ) ); } return $block_type; } /** * Retrieves a specific block type. * * @since 5.5.0 * * @param WP_REST_Request $request Full details about the request. * @return WP_Error|WP_REST_Response Response object on success, or WP_Error object on failure. */ public function get_item( $request ) { $block_name = sprintf( '%s/%s', $request['namespace'], $request['name'] ); $block_type = $this->get_block( $block_name ); if ( is_wp_error( $block_type ) ) { return $block_type; } $data = $this->prepare_item_for_response( $block_type, $request ); return rest_ensure_response( $data ); } /** * Prepares a block type object for serialization. * * @since 5.5.0 * * @param WP_Block_Type $block_type Block type data. * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response Block type data. */ public function prepare_item_for_response( $block_type, $request ) { $fields = $this->get_fields_for_response( $request ); $data = array(); if ( rest_is_field_included( 'attributes', $fields ) ) { $data['attributes'] = $block_type->get_attributes(); } if ( rest_is_field_included( 'is_dynamic', $fields ) ) { $data['is_dynamic'] = $block_type->is_dynamic(); } $schema = $this->get_item_schema(); $extra_fields = array( 'name', 'title', 'description', 'icon', 'category', 'keywords', 'parent', 'provides_context', 'uses_context', 'supports', 'styles', 'textdomain', 'example', 'editor_script', 'script', 'editor_style', 'style', ); foreach ( $extra_fields as $extra_field ) { if ( rest_is_field_included( $extra_field, $fields ) ) { if ( isset( $block_type->$extra_field ) ) { $field = $block_type->$extra_field; } elseif ( array_key_exists( 'default', $schema['properties'][ $extra_field ] ) ) { $field = $schema['properties'][ $extra_field ]['default']; } else { $field = ''; } $data[ $extra_field ] = rest_sanitize_value_from_schema( $field, $schema['properties'][ $extra_field ] ); } } if ( rest_is_field_included( 'styles', $fields ) ) { $styles = $this->style_registry->get_registered_styles_for_block( $block_type->name ); $styles = array_values( $styles ); $data['styles'] = wp_parse_args( $styles, $data['styles'] ); $data['styles'] = array_filter( $data['styles'] ); } $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 ); $response->add_links( $this->prepare_links( $block_type ) ); /** * Filters a block type returned from the REST API. * * Allows modification of the block type data right before it is returned. * * @since 5.5.0 * * @param WP_REST_Response $response The response object. * @param WP_Block_Type $block_type The original block type object. * @param WP_REST_Request $request Request used to generate the response. */ return apply_filters( 'rest_prepare_block_type', $response, $block_type, $request ); } /** * Prepares links for the request. * * @since 5.5.0 * * @param WP_Block_Type $block_type Block type data. * @return array Links for the given block type. */ protected function prepare_links( $block_type ) { list( $namespace ) = explode( '/', $block_type->name ); $links = 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, $block_type->name ) ), ), 'up' => array( 'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, $namespace ) ), ), ); if ( $block_type->is_dynamic() ) { $links['https://api.w.org/render-block'] = array( 'href' => add_query_arg( 'context', 'edit', rest_url( sprintf( '%s/%s/%s', 'wp/v2', 'block-renderer', $block_type->name ) ) ), ); } return $links; } /** * Retrieves the block type' schema, conforming to JSON Schema. * * @since 5.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' => 'block-type', 'type' => 'object', 'properties' => array( 'title' => array( 'description' => __( 'Title of block type.' ), 'type' => 'string', 'default' => '', 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'name' => array( 'description' => __( 'Unique name identifying the block type.' ), 'type' => 'string', 'default' => '', 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'description' => array( 'description' => __( 'Description of block type.' ), 'type' => 'string', 'default' => '', 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'icon' => array( 'description' => __( 'Icon of block type.' ), 'type' => array( 'string', 'null' ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'attributes' => array( 'description' => __( 'Block attributes.' ), 'type' => array( 'object', 'null' ), 'properties' => array(), 'default' => null, 'additionalProperties' => array( 'type' => 'object', ), 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'provides_context' => array( 'description' => __( 'Context provided by blocks of this type.' ), 'type' => 'object', 'properties' => array(), 'additionalProperties' => array( 'type' => 'string', ), 'default' => array(), 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'uses_context' => array( 'description' => __( 'Context values inherited by blocks of this type.' ), 'type' => 'array', 'default' => array(), 'items' => array( 'type' => 'string', ), 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'supports' => array( 'description' => __( 'Block supports.' ), 'type' => 'object', 'default' => array(), 'properties' => array(), 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'category' => array( 'description' => __( 'Block category.' ), 'type' => array( 'string', 'null' ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'is_dynamic' => array( 'description' => __( 'Is the block dynamically rendered.' ), 'type' => 'boolean', 'default' => false, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'editor_script' => array( 'description' => __( 'Editor script handle.' ), 'type' => array( 'string', 'null' ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'script' => array( 'description' => __( 'Public facing script handle.' ), 'type' => array( 'string', 'null' ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'editor_style' => array( 'description' => __( 'Editor style handle.' ), 'type' => array( 'string', 'null' ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'style' => array( 'description' => __( 'Public facing style handle.' ), 'type' => array( 'string', 'null' ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'styles' => array( 'description' => __( 'Block style variations.' ), 'type' => 'array', 'items' => array( 'type' => 'object', 'properties' => array( 'name' => array( 'description' => __( 'Unique name identifying the style.' ), 'type' => 'string', 'required' => true, ), 'label' => array( 'description' => __( 'The human-readable label for the style.' ), 'type' => 'string', ), 'inline_style' => array( 'description' => __( 'Inline CSS code that registers the CSS class required for the style.' ), 'type' => 'string', ), 'style_handle' => array( 'description' => __( 'Contains the handle that defines the block style.' ), 'type' => 'string', ), ), ), 'default' => array(), 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'textdomain' => array( 'description' => __( 'Public text domain.' ), 'type' => array( 'string', 'null' ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'parent' => array( 'description' => __( 'Parent blocks.' ), 'type' => array( 'array', 'null' ), 'items' => array( 'type' => 'string', ), 'default' => null, 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'keywords' => array( 'description' => __( 'Block keywords.' ), 'type' => 'array', 'items' => array( 'type' => 'string', ), 'default' => array(), 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'example' => array( 'description' => __( 'Block example.' ), 'type' => array( 'object', 'null' ), 'default' => null, 'properties' => array( 'attributes' => array( 'description' => __( 'The attributes used in the example.' ), 'type' => 'object', ), 'innerBlocks' => array( 'description' => __( 'The list of inner blocks used in the example.' ), 'type' => 'array', 'items' => array( 'type' => 'object', 'properties' => array( 'name' => array( 'description' => __( 'The name of the inner block.' ), 'type' => 'string', ), 'attributes' => array( 'description' => __( 'The attributes of the inner block.' ), 'type' => 'object', ), 'innerBlocks' => array( 'description' => __( "A list of the inner block's own inner blocks. This is a recursive definition following the parent innerBlocks schema." ), 'type' => 'array', ), ), ), ), ), 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), ), ); $this->schema = $schema; return $this->add_additional_fields_schema( $this->schema ); } /** * Retrieves the query params for collections. * * @since 5.5.0 * * @return array Collection parameters. */ public function get_collection_params() { return array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), 'namespace' => array( 'description' => __( 'Block namespace.' ), 'type' => 'string', ), ); } } endpoints/class-wp-rest-blocks-controller.php 0000644 00000005227 15213254037 0015430 0 ustar 00 <?php /** * Reusable blocks REST API: WP_REST_Blocks_Controller class * * @package WordPress * @subpackage REST_API * @since 5.0.0 */ /** * Controller which provides a REST endpoint for the editor to read, create, * edit and delete reusable blocks. Blocks are stored as posts with the wp_block * post type. * * @since 5.0.0 * * @see WP_REST_Posts_Controller * @see WP_REST_Controller */ class WP_REST_Blocks_Controller extends WP_REST_Posts_Controller { /** * Checks if a block can be read. * * @since 5.0.0 * * @param WP_Post $post Post object that backs the block. * @return bool Whether the block can be read. */ public function check_read_permission( $post ) { // By default the read_post capability is mapped to edit_posts. if ( ! current_user_can( 'read_post', $post->ID ) ) { return false; } return parent::check_read_permission( $post ); } /** * Filters a response based on the context defined in the schema. * * @since 5.0.0 * * @param array $data Response data to fiter. * @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 reusable block 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'] ); return $data; } /** * Retrieves the block's schema, conforming to JSON Schema. * * @since 5.0.0 * * @return array Item schema data. */ public function get_item_schema() { // Do not cache this schema because all properties are derived from parent controller. $schema = parent::get_item_schema(); /* * Allow all contexts to access `title.raw` and `content.raw`. Clients always * need the raw markup of a reusable block 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 reusable block 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'] ); return $schema; } } endpoints/class-wp-rest-comments-controller.php 0000644 00000155554 15213254037 0016011 0 ustar 00 <?php /** * REST API: WP_REST_Comments_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core controller used to access comments via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Comments_Controller extends WP_REST_Controller { /** * Instance of a comment meta fields object. * * @since 4.7.0 * @var WP_REST_Comment_Meta_Fields */ protected $meta; /** * Constructor. * * @since 4.7.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'comments'; $this->meta = new WP_REST_Comment_Meta_Fields(); } /** * Registers the routes for the objects of the controller. * * @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 ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array( 'args' => array( 'id' => array( 'description' => __( 'Unique identifier for the object.' ), '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' ) ), 'password' => array( 'description' => __( 'The password for the parent post of the comment (if the post is password protected).' ), 'type' => 'string', ), ), ), 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' => __( 'Whether to bypass Trash and force deletion.' ), ), 'password' => array( 'description' => __( 'The password for the parent post of the comment (if the post is password protected).' ), 'type' => 'string', ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks if a given request has access to read comments. * * @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, error object otherwise. */ public function get_items_permissions_check( $request ) { if ( ! empty( $request['post'] ) ) { foreach ( (array) $request['post'] as $post_id ) { $post = get_post( $post_id ); if ( ! empty( $post_id ) && $post && ! $this->check_read_post_permission( $post, $request ) ) { return new WP_Error( 'rest_cannot_read_post', __( 'Sorry, you are not allowed to read the post for this comment.' ), array( 'status' => rest_authorization_required_code() ) ); } elseif ( 0 === $post_id && ! current_user_can( 'moderate_comments' ) ) { return new WP_Error( 'rest_cannot_read', __( 'Sorry, you are not allowed to read comments without a post.' ), array( 'status' => rest_authorization_required_code() ) ); } } } if ( ! empty( $request['context'] ) && 'edit' === $request['context'] && ! current_user_can( 'moderate_comments' ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit comments.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! current_user_can( 'edit_posts' ) ) { $protected_params = array( 'author', 'author_exclude', 'author_email', 'type', 'status' ); $forbidden_params = array(); foreach ( $protected_params as $param ) { if ( 'status' === $param ) { if ( 'approve' !== $request[ $param ] ) { $forbidden_params[] = $param; } } elseif ( 'type' === $param ) { if ( 'comment' !== $request[ $param ] ) { $forbidden_params[] = $param; } } elseif ( ! empty( $request[ $param ] ) ) { $forbidden_params[] = $param; } } if ( ! empty( $forbidden_params ) ) { return new WP_Error( 'rest_forbidden_param', /* translators: %s: List of forbidden parameters. */ sprintf( __( 'Query parameter not permitted: %s' ), implode( ', ', $forbidden_params ) ), array( 'status' => rest_authorization_required_code() ) ); } } return true; } /** * Retrieves a list of comment items. * * @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 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( 'author' => 'author__in', 'author_email' => 'author_email', 'author_exclude' => 'author__not_in', 'exclude' => 'comment__not_in', 'include' => 'comment__in', 'offset' => 'offset', 'order' => 'order', 'parent' => 'parent__in', 'parent_exclude' => 'parent__not_in', 'per_page' => 'number', 'post' => 'post__in', 'search' => 'search', 'status' => 'status', 'type' => 'type', ); $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 ]; } } // Ensure certain parameter values default to empty strings. foreach ( array( 'author_email', 'search' ) as $param ) { if ( ! isset( $prepared_args[ $param ] ) ) { $prepared_args[ $param ] = ''; } } if ( isset( $registered['orderby'] ) ) { $prepared_args['orderby'] = $this->normalize_query_param( $request['orderby'] ); } $prepared_args['no_found_rows'] = false; $prepared_args['date_query'] = array(); // Set before into date query. Date query must be specified as an array of an array. if ( isset( $registered['before'], $request['before'] ) ) { $prepared_args['date_query'][0]['before'] = $request['before']; } // Set after into date query. Date query must be specified as an array of an array. if ( isset( $registered['after'], $request['after'] ) ) { $prepared_args['date_query'][0]['after'] = $request['after']; } if ( isset( $registered['page'] ) && empty( $request['offset'] ) ) { $prepared_args['offset'] = $prepared_args['number'] * ( absint( $request['page'] ) - 1 ); } /** * Filters arguments, before passing to WP_Comment_Query, when querying comments via the REST API. * * @since 4.7.0 * * @link https://developer.wordpress.org/reference/classes/wp_comment_query/ * * @param array $prepared_args Array of arguments for WP_Comment_Query. * @param WP_REST_Request $request The current request. */ $prepared_args = apply_filters( 'rest_comment_query', $prepared_args, $request ); $query = new WP_Comment_Query; $query_result = $query->query( $prepared_args ); $comments = array(); foreach ( $query_result as $comment ) { if ( ! $this->check_read_permission( $comment, $request ) ) { continue; } $data = $this->prepare_item_for_response( $comment, $request ); $comments[] = $this->prepare_response_for_collection( $data ); } $total_comments = (int) $query->found_comments; $max_pages = (int) $query->max_num_pages; if ( $total_comments < 1 ) { // Out-of-bounds, run the query again without LIMIT for total count. unset( $prepared_args['number'], $prepared_args['offset'] ); $query = new WP_Comment_Query; $prepared_args['count'] = true; $total_comments = $query->query( $prepared_args ); $max_pages = ceil( $total_comments / $request['per_page'] ); } $response = rest_ensure_response( $comments ); $response->header( 'X-WP-Total', $total_comments ); $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 ( $request['page'] > 1 ) { $prev_page = $request['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 > $request['page'] ) { $next_page = $request['page'] + 1; $next_link = add_query_arg( 'page', $next_page, $base ); $response->link_header( 'next', $next_link ); } return $response; } /** * Get the comment, if the ID is valid. * * @since 4.7.2 * * @param int $id Supplied ID. * @return WP_Comment|WP_Error Comment object if ID is valid, WP_Error otherwise. */ protected function get_comment( $id ) { $error = new WP_Error( 'rest_comment_invalid_id', __( 'Invalid comment ID.' ), array( 'status' => 404 ) ); if ( (int) $id <= 0 ) { return $error; } $id = (int) $id; $comment = get_comment( $id ); if ( empty( $comment ) ) { return $error; } if ( ! empty( $comment->comment_post_ID ) ) { $post = get_post( (int) $comment->comment_post_ID ); if ( empty( $post ) ) { return new WP_Error( 'rest_post_invalid_id', __( 'Invalid post ID.' ), array( 'status' => 404 ) ); } } return $comment; } /** * Checks if a given request has access to read the comment. * * @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, error object otherwise. */ public function get_item_permissions_check( $request ) { $comment = $this->get_comment( $request['id'] ); if ( is_wp_error( $comment ) ) { return $comment; } if ( ! empty( $request['context'] ) && 'edit' === $request['context'] && ! current_user_can( 'moderate_comments' ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit comments.' ), array( 'status' => rest_authorization_required_code() ) ); } $post = get_post( $comment->comment_post_ID ); if ( ! $this->check_read_permission( $comment, $request ) ) { return new WP_Error( 'rest_cannot_read', __( 'Sorry, you are not allowed to read this comment.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( $post && ! $this->check_read_post_permission( $post, $request ) ) { return new WP_Error( 'rest_cannot_read_post', __( 'Sorry, you are not allowed to read the post for this comment.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Retrieves a comment. * * @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 error object on failure. */ public function get_item( $request ) { $comment = $this->get_comment( $request['id'] ); if ( is_wp_error( $comment ) ) { return $comment; } $data = $this->prepare_item_for_response( $comment, $request ); $response = rest_ensure_response( $data ); return $response; } /** * Checks if a given request has access to create a comment. * * @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, error object otherwise. */ public function create_item_permissions_check( $request ) { if ( ! is_user_logged_in() ) { if ( get_option( 'comment_registration' ) ) { return new WP_Error( 'rest_comment_login_required', __( 'Sorry, you must be logged in to comment.' ), array( 'status' => 401 ) ); } /** * Filter whether comments can be created without authentication. * * Enables creating comments for anonymous users. * * @since 4.7.0 * * @param bool $allow_anonymous Whether to allow anonymous comments to * be created. Default `false`. * @param WP_REST_Request $request Request used to generate the * response. */ $allow_anonymous = apply_filters( 'rest_allow_anonymous_comments', false, $request ); if ( ! $allow_anonymous ) { return new WP_Error( 'rest_comment_login_required', __( 'Sorry, you must be logged in to comment.' ), array( 'status' => 401 ) ); } } // Limit who can set comment `author`, `author_ip` or `status` to anything other than the default. if ( isset( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( 'moderate_comments' ) ) { return new WP_Error( 'rest_comment_invalid_author', /* translators: %s: Request parameter. */ sprintf( __( "Sorry, you are not allowed to edit '%s' for comments." ), 'author' ), array( 'status' => rest_authorization_required_code() ) ); } if ( isset( $request['author_ip'] ) && ! current_user_can( 'moderate_comments' ) ) { if ( empty( $_SERVER['REMOTE_ADDR'] ) || $request['author_ip'] !== $_SERVER['REMOTE_ADDR'] ) { return new WP_Error( 'rest_comment_invalid_author_ip', /* translators: %s: Request parameter. */ sprintf( __( "Sorry, you are not allowed to edit '%s' for comments." ), 'author_ip' ), array( 'status' => rest_authorization_required_code() ) ); } } if ( isset( $request['status'] ) && ! current_user_can( 'moderate_comments' ) ) { return new WP_Error( 'rest_comment_invalid_status', /* translators: %s: Request parameter. */ sprintf( __( "Sorry, you are not allowed to edit '%s' for comments." ), 'status' ), array( 'status' => rest_authorization_required_code() ) ); } if ( empty( $request['post'] ) ) { return new WP_Error( 'rest_comment_invalid_post_id', __( 'Sorry, you are not allowed to create this comment without a post.' ), array( 'status' => 403 ) ); } $post = get_post( (int) $request['post'] ); if ( ! $post ) { return new WP_Error( 'rest_comment_invalid_post_id', __( 'Sorry, you are not allowed to create this comment without a post.' ), array( 'status' => 403 ) ); } if ( 'draft' === $post->post_status ) { return new WP_Error( 'rest_comment_draft_post', __( 'Sorry, you are not allowed to create a comment on this post.' ), array( 'status' => 403 ) ); } if ( 'trash' === $post->post_status ) { return new WP_Error( 'rest_comment_trash_post', __( 'Sorry, you are not allowed to create a comment on this post.' ), array( 'status' => 403 ) ); } if ( ! $this->check_read_post_permission( $post, $request ) ) { return new WP_Error( 'rest_cannot_read_post', __( 'Sorry, you are not allowed to read the post for this comment.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! comments_open( $post->ID ) ) { return new WP_Error( 'rest_comment_closed', __( 'Sorry, comments are closed for this item.' ), array( 'status' => 403 ) ); } return true; } /** * Creates a comment. * * @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 error object on failure. */ public function create_item( $request ) { if ( ! empty( $request['id'] ) ) { return new WP_Error( 'rest_comment_exists', __( 'Cannot create existing comment.' ), array( 'status' => 400 ) ); } // Do not allow comments to be created with a non-default type. if ( ! empty( $request['type'] ) && 'comment' !== $request['type'] ) { return new WP_Error( 'rest_invalid_comment_type', __( 'Cannot create a comment with that type.' ), array( 'status' => 400 ) ); } $prepared_comment = $this->prepare_item_for_database( $request ); if ( is_wp_error( $prepared_comment ) ) { return $prepared_comment; } $prepared_comment['comment_type'] = 'comment'; /* * Do not allow a comment to be created with missing or empty * comment_content. See wp_handle_comment_submission(). */ if ( empty( $prepared_comment['comment_content'] ) ) { return new WP_Error( 'rest_comment_content_invalid', __( 'Invalid comment content.' ), array( 'status' => 400 ) ); } // Setting remaining values before wp_insert_comment so we can use wp_allow_comment(). if ( ! isset( $prepared_comment['comment_date_gmt'] ) ) { $prepared_comment['comment_date_gmt'] = current_time( 'mysql', true ); } // Set author data if the user's logged in. $missing_author = empty( $prepared_comment['user_id'] ) && empty( $prepared_comment['comment_author'] ) && empty( $prepared_comment['comment_author_email'] ) && empty( $prepared_comment['comment_author_url'] ); if ( is_user_logged_in() && $missing_author ) { $user = wp_get_current_user(); $prepared_comment['user_id'] = $user->ID; $prepared_comment['comment_author'] = $user->display_name; $prepared_comment['comment_author_email'] = $user->user_email; $prepared_comment['comment_author_url'] = $user->user_url; } // Honor the discussion setting that requires a name and email address of the comment author. if ( get_option( 'require_name_email' ) ) { if ( empty( $prepared_comment['comment_author'] ) || empty( $prepared_comment['comment_author_email'] ) ) { return new WP_Error( 'rest_comment_author_data_required', __( 'Creating a comment requires valid author name and email values.' ), array( 'status' => 400 ) ); } } if ( ! isset( $prepared_comment['comment_author_email'] ) ) { $prepared_comment['comment_author_email'] = ''; } if ( ! isset( $prepared_comment['comment_author_url'] ) ) { $prepared_comment['comment_author_url'] = ''; } if ( ! isset( $prepared_comment['comment_agent'] ) ) { $prepared_comment['comment_agent'] = ''; } $check_comment_lengths = wp_check_comment_data_max_lengths( $prepared_comment ); if ( is_wp_error( $check_comment_lengths ) ) { $error_code = $check_comment_lengths->get_error_code(); return new WP_Error( $error_code, __( 'Comment field exceeds maximum length allowed.' ), array( 'status' => 400 ) ); } $prepared_comment['comment_approved'] = wp_allow_comment( $prepared_comment, true ); if ( is_wp_error( $prepared_comment['comment_approved'] ) ) { $error_code = $prepared_comment['comment_approved']->get_error_code(); $error_message = $prepared_comment['comment_approved']->get_error_message(); if ( 'comment_duplicate' === $error_code ) { return new WP_Error( $error_code, $error_message, array( 'status' => 409 ) ); } if ( 'comment_flood' === $error_code ) { return new WP_Error( $error_code, $error_message, array( 'status' => 400 ) ); } return $prepared_comment['comment_approved']; } /** * Filters a comment before it is inserted via the REST API. * * Allows modification of the comment right before it is inserted via wp_insert_comment(). * Returning a WP_Error value from the filter will short-circuit insertion and allow * skipping further processing. * * @since 4.7.0 * @since 4.8.0 `$prepared_comment` can now be a WP_Error to short-circuit insertion. * * @param array|WP_Error $prepared_comment The prepared comment data for wp_insert_comment(). * @param WP_REST_Request $request Request used to insert the comment. */ $prepared_comment = apply_filters( 'rest_pre_insert_comment', $prepared_comment, $request ); if ( is_wp_error( $prepared_comment ) ) { return $prepared_comment; } $comment_id = wp_insert_comment( wp_filter_comment( wp_slash( (array) $prepared_comment ) ) ); if ( ! $comment_id ) { return new WP_Error( 'rest_comment_failed_create', __( 'Creating comment failed.' ), array( 'status' => 500 ) ); } if ( isset( $request['status'] ) ) { $this->handle_status_param( $request['status'], $comment_id ); } $comment = get_comment( $comment_id ); /** * Fires after a comment is created or updated via the REST API. * * @since 4.7.0 * * @param WP_Comment $comment Inserted or updated comment object. * @param WP_REST_Request $request Request object. * @param bool $creating True when creating a comment, false * when updating. */ do_action( 'rest_insert_comment', $comment, $request, true ); $schema = $this->get_item_schema(); if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { $meta_update = $this->meta->update_value( $request['meta'], $comment_id ); if ( is_wp_error( $meta_update ) ) { return $meta_update; } } $fields_update = $this->update_additional_fields_for_object( $comment, $request ); if ( is_wp_error( $fields_update ) ) { return $fields_update; } $context = current_user_can( 'moderate_comments' ) ? 'edit' : 'view'; $request->set_param( 'context', $context ); /** * Fires completely after a comment is created or updated via the REST API. * * @since 5.0.0 * * @param WP_Comment $comment Inserted or updated comment object. * @param WP_REST_Request $request Request object. * @param bool $creating True when creating a comment, false * when updating. */ do_action( 'rest_after_insert_comment', $comment, $request, true ); $response = $this->prepare_item_for_response( $comment, $request ); $response = rest_ensure_response( $response ); $response->set_status( 201 ); $response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $comment_id ) ) ); return $response; } /** * Checks if a given REST request has access to update a comment. * * @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, error object otherwise. */ public function update_item_permissions_check( $request ) { $comment = $this->get_comment( $request['id'] ); if ( is_wp_error( $comment ) ) { return $comment; } if ( ! $this->check_edit_permission( $comment ) ) { return new WP_Error( 'rest_cannot_edit', __( 'Sorry, you are not allowed to edit this comment.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Updates a comment. * * @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 error object on failure. */ public function update_item( $request ) { $comment = $this->get_comment( $request['id'] ); if ( is_wp_error( $comment ) ) { return $comment; } $id = $comment->comment_ID; if ( isset( $request['type'] ) && get_comment_type( $id ) !== $request['type'] ) { return new WP_Error( 'rest_comment_invalid_type', __( 'Sorry, you are not allowed to change the comment type.' ), array( 'status' => 404 ) ); } $prepared_args = $this->prepare_item_for_database( $request ); if ( is_wp_error( $prepared_args ) ) { return $prepared_args; } if ( ! empty( $prepared_args['comment_post_ID'] ) ) { $post = get_post( $prepared_args['comment_post_ID'] ); if ( empty( $post ) ) { return new WP_Error( 'rest_comment_invalid_post_id', __( 'Invalid post ID.' ), array( 'status' => 403 ) ); } } if ( empty( $prepared_args ) && isset( $request['status'] ) ) { // Only the comment status is being changed. $change = $this->handle_status_param( $request['status'], $id ); if ( ! $change ) { return new WP_Error( 'rest_comment_failed_edit', __( 'Updating comment status failed.' ), array( 'status' => 500 ) ); } } elseif ( ! empty( $prepared_args ) ) { if ( is_wp_error( $prepared_args ) ) { return $prepared_args; } if ( isset( $prepared_args['comment_content'] ) && empty( $prepared_args['comment_content'] ) ) { return new WP_Error( 'rest_comment_content_invalid', __( 'Invalid comment content.' ), array( 'status' => 400 ) ); } $prepared_args['comment_ID'] = $id; $check_comment_lengths = wp_check_comment_data_max_lengths( $prepared_args ); if ( is_wp_error( $check_comment_lengths ) ) { $error_code = $check_comment_lengths->get_error_code(); return new WP_Error( $error_code, __( 'Comment field exceeds maximum length allowed.' ), array( 'status' => 400 ) ); } $updated = wp_update_comment( wp_slash( (array) $prepared_args ), true ); if ( is_wp_error( $updated ) ) { return new WP_Error( 'rest_comment_failed_edit', __( 'Updating comment failed.' ), array( 'status' => 500 ) ); } if ( isset( $request['status'] ) ) { $this->handle_status_param( $request['status'], $id ); } } $comment = get_comment( $id ); /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php */ do_action( 'rest_insert_comment', $comment, $request, false ); $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; } } $fields_update = $this->update_additional_fields_for_object( $comment, $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-comments-controller.php */ do_action( 'rest_after_insert_comment', $comment, $request, false ); $response = $this->prepare_item_for_response( $comment, $request ); return rest_ensure_response( $response ); } /** * Checks if a given request has access to delete a comment. * * @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, error object otherwise. */ public function delete_item_permissions_check( $request ) { $comment = $this->get_comment( $request['id'] ); if ( is_wp_error( $comment ) ) { return $comment; } if ( ! $this->check_edit_permission( $comment ) ) { return new WP_Error( 'rest_cannot_delete', __( 'Sorry, you are not allowed to delete this comment.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Deletes a comment. * * @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 error object on failure. */ public function delete_item( $request ) { $comment = $this->get_comment( $request['id'] ); if ( is_wp_error( $comment ) ) { return $comment; } $force = isset( $request['force'] ) ? (bool) $request['force'] : false; /** * Filters whether a comment can be trashed. * * Return false to disable Trash support for the post. * * @since 4.7.0 * * @param bool $supports_trash Whether the post type support trashing. * @param WP_Post $comment The comment object being considered for trashing support. */ $supports_trash = apply_filters( 'rest_comment_trashable', ( EMPTY_TRASH_DAYS > 0 ), $comment ); $request->set_param( 'context', 'edit' ); if ( $force ) { $previous = $this->prepare_item_for_response( $comment, $request ); $result = wp_delete_comment( $comment->comment_ID, true ); $response = new WP_REST_Response(); $response->set_data( array( 'deleted' => true, 'previous' => $previous->get_data(), ) ); } else { // If this type doesn't support trashing, error out. if ( ! $supports_trash ) { return new WP_Error( 'rest_trash_not_supported', /* translators: %s: force=true */ sprintf( __( "The comment does not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) ); } if ( 'trash' === $comment->comment_approved ) { return new WP_Error( 'rest_already_trashed', __( 'The comment has already been trashed.' ), array( 'status' => 410 ) ); } $result = wp_trash_comment( $comment->comment_ID ); $comment = get_comment( $comment->comment_ID ); $response = $this->prepare_item_for_response( $comment, $request ); } if ( ! $result ) { return new WP_Error( 'rest_cannot_delete', __( 'The comment cannot be deleted.' ), array( 'status' => 500 ) ); } /** * Fires after a comment is deleted via the REST API. * * @since 4.7.0 * * @param WP_Comment $comment The deleted comment 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_comment', $comment, $response, $request ); return $response; } /** * Prepares a single comment output for response. * * @since 4.7.0 * * @param WP_Comment $comment Comment object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $comment, $request ) { $fields = $this->get_fields_for_response( $request ); $data = array(); if ( in_array( 'id', $fields, true ) ) { $data['id'] = (int) $comment->comment_ID; } if ( in_array( 'post', $fields, true ) ) { $data['post'] = (int) $comment->comment_post_ID; } if ( in_array( 'parent', $fields, true ) ) { $data['parent'] = (int) $comment->comment_parent; } if ( in_array( 'author', $fields, true ) ) { $data['author'] = (int) $comment->user_id; } if ( in_array( 'author_name', $fields, true ) ) { $data['author_name'] = $comment->comment_author; } if ( in_array( 'author_email', $fields, true ) ) { $data['author_email'] = $comment->comment_author_email; } if ( in_array( 'author_url', $fields, true ) ) { $data['author_url'] = $comment->comment_author_url; } if ( in_array( 'author_ip', $fields, true ) ) { $data['author_ip'] = $comment->comment_author_IP; } if ( in_array( 'author_user_agent', $fields, true ) ) { $data['author_user_agent'] = $comment->comment_agent; } if ( in_array( 'date', $fields, true ) ) { $data['date'] = mysql_to_rfc3339( $comment->comment_date ); } if ( in_array( 'date_gmt', $fields, true ) ) { $data['date_gmt'] = mysql_to_rfc3339( $comment->comment_date_gmt ); } if ( in_array( 'content', $fields, true ) ) { $data['content'] = array( /** This filter is documented in wp-includes/comment-template.php */ 'rendered' => apply_filters( 'comment_text', $comment->comment_content, $comment ), 'raw' => $comment->comment_content, ); } if ( in_array( 'link', $fields, true ) ) { $data['link'] = get_comment_link( $comment ); } if ( in_array( 'status', $fields, true ) ) { $data['status'] = $this->prepare_status_response( $comment->comment_approved ); } if ( in_array( 'type', $fields, true ) ) { $data['type'] = get_comment_type( $comment->comment_ID ); } if ( in_array( 'author_avatar_urls', $fields, true ) ) { $data['author_avatar_urls'] = rest_get_avatar_urls( $comment ); } if ( in_array( 'meta', $fields, true ) ) { $data['meta'] = $this->meta->get_value( $comment->comment_ID, $request ); } $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 ); $response->add_links( $this->prepare_links( $comment ) ); /** * Filters a comment returned from the API. * * Allows modification of the comment right before it is returned. * * @since 4.7.0 * * @param WP_REST_Response $response The response object. * @param WP_Comment $comment The original comment object. * @param WP_REST_Request $request Request used to generate the response. */ return apply_filters( 'rest_prepare_comment', $response, $comment, $request ); } /** * Prepares links for the request. * * @since 4.7.0 * * @param WP_Comment $comment Comment object. * @return array Links for the given comment. */ protected function prepare_links( $comment ) { $links = array( 'self' => array( 'href' => rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $comment->comment_ID ) ), ), 'collection' => array( 'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ), ), ); if ( 0 !== (int) $comment->user_id ) { $links['author'] = array( 'href' => rest_url( 'wp/v2/users/' . $comment->user_id ), 'embeddable' => true, ); } if ( 0 !== (int) $comment->comment_post_ID ) { $post = get_post( $comment->comment_post_ID ); if ( ! empty( $post->ID ) ) { $obj = get_post_type_object( $post->post_type ); $base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name; $links['up'] = array( 'href' => rest_url( 'wp/v2/' . $base . '/' . $comment->comment_post_ID ), 'embeddable' => true, 'post_type' => $post->post_type, ); } } if ( 0 !== (int) $comment->comment_parent ) { $links['in-reply-to'] = array( 'href' => rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $comment->comment_parent ) ), 'embeddable' => true, ); } // Only grab one comment to verify the comment has children. $comment_children = $comment->get_children( array( 'number' => 1, 'count' => true, ) ); if ( ! empty( $comment_children ) ) { $args = array( 'parent' => $comment->comment_ID, ); $rest_url = add_query_arg( $args, rest_url( $this->namespace . '/' . $this->rest_base ) ); $links['children'] = array( 'href' => $rest_url, ); } return $links; } /** * Prepends internal property prefix to query parameters to match our response fields. * * @since 4.7.0 * * @param string $query_param Query parameter. * @return string The normalized query parameter. */ protected function normalize_query_param( $query_param ) { $prefix = 'comment_'; switch ( $query_param ) { case 'id': $normalized = $prefix . 'ID'; break; case 'post': $normalized = $prefix . 'post_ID'; break; case 'parent': $normalized = $prefix . 'parent'; break; case 'include': $normalized = 'comment__in'; break; default: $normalized = $prefix . $query_param; break; } return $normalized; } /** * Checks comment_approved to set comment status for single comment output. * * @since 4.7.0 * * @param string|int $comment_approved comment status. * @return string Comment status. */ protected function prepare_status_response( $comment_approved ) { switch ( $comment_approved ) { case 'hold': case '0': $status = 'hold'; break; case 'approve': case '1': $status = 'approved'; break; case 'spam': case 'trash': default: $status = $comment_approved; break; } return $status; } /** * Prepares a single comment to be inserted into the database. * * @since 4.7.0 * * @param WP_REST_Request $request Request object. * @return array|WP_Error Prepared comment, otherwise WP_Error object. */ protected function prepare_item_for_database( $request ) { $prepared_comment = array(); /* * Allow the comment_content to be set via the 'content' or * the 'content.raw' properties of the Request object. */ if ( isset( $request['content'] ) && is_string( $request['content'] ) ) { $prepared_comment['comment_content'] = $request['content']; } elseif ( isset( $request['content']['raw'] ) && is_string( $request['content']['raw'] ) ) { $prepared_comment['comment_content'] = $request['content']['raw']; } if ( isset( $request['post'] ) ) { $prepared_comment['comment_post_ID'] = (int) $request['post']; } if ( isset( $request['parent'] ) ) { $prepared_comment['comment_parent'] = $request['parent']; } if ( isset( $request['author'] ) ) { $user = new WP_User( $request['author'] ); if ( $user->exists() ) { $prepared_comment['user_id'] = $user->ID; $prepared_comment['comment_author'] = $user->display_name; $prepared_comment['comment_author_email'] = $user->user_email; $prepared_comment['comment_author_url'] = $user->user_url; } else { return new WP_Error( 'rest_comment_author_invalid', __( 'Invalid comment author ID.' ), array( 'status' => 400 ) ); } } if ( isset( $request['author_name'] ) ) { $prepared_comment['comment_author'] = $request['author_name']; } if ( isset( $request['author_email'] ) ) { $prepared_comment['comment_author_email'] = $request['author_email']; } if ( isset( $request['author_url'] ) ) { $prepared_comment['comment_author_url'] = $request['author_url']; } if ( isset( $request['author_ip'] ) && current_user_can( 'moderate_comments' ) ) { $prepared_comment['comment_author_IP'] = $request['author_ip']; } elseif ( ! empty( $_SERVER['REMOTE_ADDR'] ) && rest_is_ip_address( $_SERVER['REMOTE_ADDR'] ) ) { $prepared_comment['comment_author_IP'] = $_SERVER['REMOTE_ADDR']; } else { $prepared_comment['comment_author_IP'] = '127.0.0.1'; } if ( ! empty( $request['author_user_agent'] ) ) { $prepared_comment['comment_agent'] = $request['author_user_agent']; } elseif ( $request->get_header( 'user_agent' ) ) { $prepared_comment['comment_agent'] = $request->get_header( 'user_agent' ); } if ( ! empty( $request['date'] ) ) { $date_data = rest_get_date_with_gmt( $request['date'] ); if ( ! empty( $date_data ) ) { list( $prepared_comment['comment_date'], $prepared_comment['comment_date_gmt'] ) = $date_data; } } elseif ( ! empty( $request['date_gmt'] ) ) { $date_data = rest_get_date_with_gmt( $request['date_gmt'], true ); if ( ! empty( $date_data ) ) { list( $prepared_comment['comment_date'], $prepared_comment['comment_date_gmt'] ) = $date_data; } } /** * Filters a comment after it is prepared for the database. * * Allows modification of the comment right after it is prepared for the database. * * @since 4.7.0 * * @param array $prepared_comment The prepared comment data for `wp_insert_comment`. * @param WP_REST_Request $request The current request. */ return apply_filters( 'rest_preprocess_comment', $prepared_comment, $request ); } /** * Retrieves the comment's schema, conforming to JSON Schema. * * @since 4.7.0 * * @return array */ 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' => 'comment', 'type' => 'object', 'properties' => array( 'id' => array( 'description' => __( 'Unique identifier for the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'author' => array( 'description' => __( 'The ID of the user object, if author was a user.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), ), 'author_email' => array( 'description' => __( 'Email address for the object author.' ), 'type' => 'string', 'format' => 'email', 'context' => array( 'edit' ), 'arg_options' => array( 'sanitize_callback' => array( $this, 'check_comment_author_email' ), 'validate_callback' => null, // Skip built-in validation of 'email'. ), ), 'author_ip' => array( 'description' => __( 'IP address for the object author.' ), 'type' => 'string', 'format' => 'ip', 'context' => array( 'edit' ), ), 'author_name' => array( 'description' => __( 'Display name for the object author.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'arg_options' => array( 'sanitize_callback' => 'sanitize_text_field', ), ), 'author_url' => array( 'description' => __( 'URL for the object author.' ), 'type' => 'string', 'format' => 'uri', 'context' => array( 'view', 'edit', 'embed' ), ), 'author_user_agent' => array( 'description' => __( 'User agent for the object author.' ), 'type' => 'string', 'context' => array( 'edit' ), 'arg_options' => array( 'sanitize_callback' => 'sanitize_text_field', ), ), 'content' => array( 'description' => __( 'The content for the object.' ), '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' => __( 'Content for the object, as it exists in the database.' ), 'type' => 'string', 'context' => array( 'edit' ), ), 'rendered' => array( 'description' => __( 'HTML content for the object, transformed for display.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), ), ), 'date' => array( 'description' => __( "The date the object was published, in the site's timezone." ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit', 'embed' ), ), 'date_gmt' => array( 'description' => __( 'The date the object was published, as GMT.' ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ), ), 'link' => array( 'description' => __( 'URL to the object.' ), 'type' => 'string', 'format' => 'uri', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'parent' => array( 'description' => __( 'The ID for the parent of the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), 'default' => 0, ), 'post' => array( 'description' => __( 'The ID of the associated post object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit' ), 'default' => 0, ), 'status' => array( 'description' => __( 'State of the object.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), 'arg_options' => array( 'sanitize_callback' => 'sanitize_key', ), ), 'type' => array( 'description' => __( 'Type of Comment for the object.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), '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']['author_avatar_urls'] = array( 'description' => __( 'Avatar URLs for the object author.' ), 'type' => 'object', 'context' => array( 'view', 'edit', 'embed' ), '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 Comments collection parameters. */ public function get_collection_params() { $query_params = parent::get_collection_params(); $query_params['context']['default'] = 'view'; $query_params['after'] = array( 'description' => __( 'Limit response to comments published after a given ISO8601 compliant date.' ), 'type' => 'string', 'format' => 'date-time', ); $query_params['author'] = array( 'description' => __( 'Limit result set to comments assigned to specific user IDs. Requires authorization.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), ); $query_params['author_exclude'] = array( 'description' => __( 'Ensure result set excludes comments assigned to specific user IDs. Requires authorization.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), ); $query_params['author_email'] = array( 'default' => null, 'description' => __( 'Limit result set to that from a specific author email. Requires authorization.' ), 'format' => 'email', 'type' => 'string', ); $query_params['before'] = array( 'description' => __( 'Limit response to comments published before a given ISO8601 compliant date.' ), 'type' => 'string', 'format' => 'date-time', ); $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( 'description' => __( 'Order sort attribute ascending or descending.' ), 'type' => 'string', 'default' => 'desc', 'enum' => array( 'asc', 'desc', ), ); $query_params['orderby'] = array( 'description' => __( 'Sort collection by object attribute.' ), 'type' => 'string', 'default' => 'date_gmt', 'enum' => array( 'date', 'date_gmt', 'id', 'include', 'post', 'parent', 'type', ), ); $query_params['parent'] = array( 'default' => array(), 'description' => __( 'Limit result set to comments of specific parent IDs.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), ); $query_params['parent_exclude'] = array( 'default' => array(), 'description' => __( 'Ensure result set excludes specific parent IDs.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), ); $query_params['post'] = array( 'default' => array(), 'description' => __( 'Limit result set to comments assigned to specific post IDs.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), ); $query_params['status'] = array( 'default' => 'approve', 'description' => __( 'Limit result set to comments assigned a specific status. Requires authorization.' ), 'sanitize_callback' => 'sanitize_key', 'type' => 'string', 'validate_callback' => 'rest_validate_request_arg', ); $query_params['type'] = array( 'default' => 'comment', 'description' => __( 'Limit result set to comments assigned a specific type. Requires authorization.' ), 'sanitize_callback' => 'sanitize_key', 'type' => 'string', 'validate_callback' => 'rest_validate_request_arg', ); $query_params['password'] = array( 'description' => __( 'The password for the post if it is password protected.' ), 'type' => 'string', ); /** * Filter collection parameters for the comments controller. * * This filter registers the collection parameter, but does not map the * collection parameter to an internal WP_Comment_Query parameter. Use the * `rest_comment_query` filter to set WP_Comment_Query parameters. * * @since 4.7.0 * * @param array $query_params JSON Schema-formatted collection parameters. */ return apply_filters( 'rest_comment_collection_params', $query_params ); } /** * Sets the comment_status of a given comment object when creating or updating a comment. * * @since 4.7.0 * * @param string|int $new_status New comment status. * @param int $comment_id Comment ID. * @return bool Whether the status was changed. */ protected function handle_status_param( $new_status, $comment_id ) { $old_status = wp_get_comment_status( $comment_id ); if ( $new_status === $old_status ) { return false; } switch ( $new_status ) { case 'approved': case 'approve': case '1': $changed = wp_set_comment_status( $comment_id, 'approve' ); break; case 'hold': case '0': $changed = wp_set_comment_status( $comment_id, 'hold' ); break; case 'spam': $changed = wp_spam_comment( $comment_id ); break; case 'unspam': $changed = wp_unspam_comment( $comment_id ); break; case 'trash': $changed = wp_trash_comment( $comment_id ); break; case 'untrash': $changed = wp_untrash_comment( $comment_id ); break; default: $changed = false; break; } return $changed; } /** * Checks if the post can be read. * * Correctly handles posts with the inherit status. * * @since 4.7.0 * * @param WP_Post $post Post object. * @param WP_REST_Request $request Request data to check. * @return bool Whether post can be read. */ protected function check_read_post_permission( $post, $request ) { $post_type = get_post_type_object( $post->post_type ); // Return false if custom post type doesn't exist if ( ! $post_type ) { return false; } $posts_controller = $post_type->get_rest_controller(); // Ensure the posts controller is specifically a WP_REST_Posts_Controller instance // before using methods specific to that controller. if ( ! $posts_controller instanceof WP_REST_Posts_Controller ) { $posts_controller = new WP_REST_Posts_Controller( $post->post_type ); } $has_password_filter = false; // Only check password if a specific post was queried for or a single comment $requested_post = ! empty( $request['post'] ) && ( ! is_array( $request['post'] ) || 1 === count( $request['post'] ) ); $requested_comment = ! empty( $request['id'] ); if ( ( $requested_post || $requested_comment ) && $posts_controller->can_access_password_content( $post, $request ) ) { add_filter( 'post_password_required', '__return_false' ); $has_password_filter = true; } if ( post_password_required( $post ) ) { $result = current_user_can( 'edit_post', $post->ID ); } else { $result = $posts_controller->check_read_permission( $post ); } if ( $has_password_filter ) { remove_filter( 'post_password_required', '__return_false' ); } return $result; } /** * Checks if the comment can be read. * * @since 4.7.0 * * @param WP_Comment $comment Comment object. * @param WP_REST_Request $request Request data to check. * @return bool Whether the comment can be read. */ protected function check_read_permission( $comment, $request ) { if ( ! empty( $comment->comment_post_ID ) ) { $post = get_post( $comment->comment_post_ID ); if ( $post ) { if ( $this->check_read_post_permission( $post, $request ) && 1 === (int) $comment->comment_approved ) { return true; } } } if ( 0 === get_current_user_id() ) { return false; } if ( empty( $comment->comment_post_ID ) && ! current_user_can( 'moderate_comments' ) ) { return false; } if ( ! empty( $comment->user_id ) && get_current_user_id() === (int) $comment->user_id ) { return true; } return current_user_can( 'edit_comment', $comment->comment_ID ); } /** * Checks if a comment can be edited or deleted. * * @since 4.7.0 * * @param WP_Comment $comment Comment object. * @return bool Whether the comment can be edited or deleted. */ protected function check_edit_permission( $comment ) { if ( 0 === (int) get_current_user_id() ) { return false; } if ( current_user_can( 'moderate_comments' ) ) { return true; } return current_user_can( 'edit_comment', $comment->comment_ID ); } /** * Checks a comment author email for validity. * * Accepts either a valid email address or empty string as a valid comment * author email address. Setting the comment author email to an empty * string is allowed when a comment is being updated. * * @since 4.7.0 * * @param string $value Author email value submitted. * @param WP_REST_Request $request Full details about the request. * @param string $param The parameter name. * @return string|WP_Error The sanitized email address, if valid, * otherwise an error. */ public function check_comment_author_email( $value, $request, $param ) { $email = (string) $value; if ( empty( $email ) ) { return $email; } $check_email = rest_validate_request_arg( $email, $request, $param ); if ( is_wp_error( $check_email ) ) { return $check_email; } return $email; } } endpoints/class-wp-rest-controller.php 0000644 00000047536 15213254037 0014166 0 ustar 00 <?php /** * REST API: WP_REST_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core base controller for managing and interacting with REST API items. * * @since 4.7.0 */ abstract class WP_REST_Controller { /** * The namespace of this controller's route. * * @since 4.7.0 * @var string */ protected $namespace; /** * The base of this controller's route. * * @since 4.7.0 * @var string */ protected $rest_base; /** * Cached results of get_item_schema. * * @since 5.3.0 * @var array */ protected $schema; /** * Registers the routes for the objects of the controller. * * @since 4.7.0 * * @see register_rest_route() */ public function register_routes() { _doing_it_wrong( 'WP_REST_Controller::register_routes', /* translators: %s: register_routes() */ sprintf( __( "Method '%s' must be overridden." ), __METHOD__ ), '4.7' ); } /** * Checks if a given request has access to get items. * * @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, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Retrieves a collection of items. * * @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_items( $request ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Checks if a given request has access to get a specific item. * * @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, WP_Error object otherwise. */ public function get_item_permissions_check( $request ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Retrieves one item from the collection. * * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Checks if a given request has access to create items. * * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Creates one item from the collection. * * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Checks if a given request has access to update a specific item. * * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Updates one item from the collection. * * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Checks if a given request has access to delete a specific item. * * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Deletes one item from the collection. * * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Prepares one item for create or update operation. * * @since 4.7.0 * * @param WP_REST_Request $request Request object. * @return object|WP_Error The prepared item, or WP_Error object on failure. */ protected function prepare_item_for_database( $request ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Prepares the item for the REST response. * * @since 4.7.0 * * @param mixed $item WordPress representation of the item. * @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 ) { return new WP_Error( 'invalid-method', /* translators: %s: Method name. */ sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) ); } /** * Prepares a response for insertion into a collection. * * @since 4.7.0 * * @param WP_REST_Response $response Response object. * @return array|mixed Response data, ready for insertion into collection data. */ public function prepare_response_for_collection( $response ) { if ( ! ( $response instanceof WP_REST_Response ) ) { return $response; } $data = (array) $response->get_data(); $server = rest_get_server(); $links = $server::get_compact_response_links( $response ); if ( ! empty( $links ) ) { $data['_links'] = $links; } return $data; } /** * Filters a response based on the context defined in the schema. * * @since 4.7.0 * * @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 ) { $schema = $this->get_item_schema(); return rest_filter_response_by_context( $data, $schema, $context ); } /** * Retrieves the item's schema, conforming to JSON Schema. * * @since 4.7.0 * * @return array Item schema data. */ public function get_item_schema() { return $this->add_additional_fields_schema( array() ); } /** * Retrieves the item's schema for display / public consumption purposes. * * @since 4.7.0 * * @return array Public item schema data. */ public function get_public_item_schema() { $schema = $this->get_item_schema(); if ( ! empty( $schema['properties'] ) ) { foreach ( $schema['properties'] as &$property ) { unset( $property['arg_options'] ); } } return $schema; } /** * Retrieves the query params for the collections. * * @since 4.7.0 * * @return array Query parameters for the collection. */ public function get_collection_params() { return array( 'context' => $this->get_context_param(), 'page' => array( 'description' => __( 'Current page of the collection.' ), 'type' => 'integer', 'default' => 1, 'sanitize_callback' => 'absint', 'validate_callback' => 'rest_validate_request_arg', 'minimum' => 1, ), 'per_page' => array( 'description' => __( 'Maximum number of items to be returned in result set.' ), 'type' => 'integer', 'default' => 10, 'minimum' => 1, 'maximum' => 100, 'sanitize_callback' => 'absint', 'validate_callback' => 'rest_validate_request_arg', ), 'search' => array( 'description' => __( 'Limit results to those matching a string.' ), 'type' => 'string', 'sanitize_callback' => 'sanitize_text_field', 'validate_callback' => 'rest_validate_request_arg', ), ); } /** * Retrieves the magical context param. * * Ensures consistent descriptions between endpoints, and populates enum from schema. * * @since 4.7.0 * * @param array $args Optional. Additional arguments for context parameter. Default empty array. * @return array Context parameter details. */ public function get_context_param( $args = array() ) { $param_details = array( 'description' => __( 'Scope under which the request is made; determines fields present in response.' ), 'type' => 'string', 'sanitize_callback' => 'sanitize_key', 'validate_callback' => 'rest_validate_request_arg', ); $schema = $this->get_item_schema(); if ( empty( $schema['properties'] ) ) { return array_merge( $param_details, $args ); } $contexts = array(); foreach ( $schema['properties'] as $attributes ) { if ( ! empty( $attributes['context'] ) ) { $contexts = array_merge( $contexts, $attributes['context'] ); } } if ( ! empty( $contexts ) ) { $param_details['enum'] = array_unique( $contexts ); rsort( $param_details['enum'] ); } return array_merge( $param_details, $args ); } /** * Adds the values from additional fields to a data object. * * @since 4.7.0 * * @param array $prepared Prepared response array. * @param WP_REST_Request $request Full details about the request. * @return array Modified data object with additional fields. */ protected function add_additional_fields_to_object( $prepared, $request ) { $additional_fields = $this->get_additional_fields(); $requested_fields = $this->get_fields_for_response( $request ); foreach ( $additional_fields as $field_name => $field_options ) { if ( ! $field_options['get_callback'] ) { continue; } if ( ! rest_is_field_included( $field_name, $requested_fields ) ) { continue; } $prepared[ $field_name ] = call_user_func( $field_options['get_callback'], $prepared, $field_name, $request, $this->get_object_type() ); } return $prepared; } /** * Updates the values of additional fields added to a data object. * * @since 4.7.0 * * @param object $object Data model like WP_Term or WP_Post. * @param WP_REST_Request $request Full details about the request. * @return bool|WP_Error True on success, WP_Error object if a field cannot be updated. */ protected function update_additional_fields_for_object( $object, $request ) { $additional_fields = $this->get_additional_fields(); foreach ( $additional_fields as $field_name => $field_options ) { if ( ! $field_options['update_callback'] ) { continue; } // Don't run the update callbacks if the data wasn't passed in the request. if ( ! isset( $request[ $field_name ] ) ) { continue; } $result = call_user_func( $field_options['update_callback'], $request[ $field_name ], $object, $field_name, $request, $this->get_object_type() ); if ( is_wp_error( $result ) ) { return $result; } } return true; } /** * Adds the schema from additional fields to a schema array. * * The type of object is inferred from the passed schema. * * @since 4.7.0 * * @param array $schema Schema array. * @return array Modified Schema array. */ protected function add_additional_fields_schema( $schema ) { if ( empty( $schema['title'] ) ) { return $schema; } // Can't use $this->get_object_type otherwise we cause an inf loop. $object_type = $schema['title']; $additional_fields = $this->get_additional_fields( $object_type ); foreach ( $additional_fields as $field_name => $field_options ) { if ( ! $field_options['schema'] ) { continue; } $schema['properties'][ $field_name ] = $field_options['schema']; } return $schema; } /** * Retrieves all of the registered additional fields for a given object-type. * * @since 4.7.0 * * @param string $object_type Optional. The object type. * @return array Registered additional fields (if any), empty array if none or if the object type could * not be inferred. */ protected function get_additional_fields( $object_type = null ) { if ( ! $object_type ) { $object_type = $this->get_object_type(); } if ( ! $object_type ) { return array(); } global $wp_rest_additional_fields; if ( ! $wp_rest_additional_fields || ! isset( $wp_rest_additional_fields[ $object_type ] ) ) { return array(); } return $wp_rest_additional_fields[ $object_type ]; } /** * Retrieves the object type this controller is responsible for managing. * * @since 4.7.0 * * @return string Object type for the controller. */ protected function get_object_type() { $schema = $this->get_item_schema(); if ( ! $schema || ! isset( $schema['title'] ) ) { return null; } return $schema['title']; } /** * Gets an array of fields to be included on the response. * * Included fields are based on item schema and `_fields=` request argument. * * @since 4.9.6 * * @param WP_REST_Request $request Full details about the request. * @return array Fields to be included in the response. */ public function get_fields_for_response( $request ) { $schema = $this->get_item_schema(); $properties = isset( $schema['properties'] ) ? $schema['properties'] : array(); $additional_fields = $this->get_additional_fields(); foreach ( $additional_fields as $field_name => $field_options ) { // For back-compat, include any field with an empty schema // because it won't be present in $this->get_item_schema(). if ( is_null( $field_options['schema'] ) ) { $properties[ $field_name ] = $field_options; } } // Exclude fields that specify a different context than the request context. $context = $request['context']; if ( $context ) { foreach ( $properties as $name => $options ) { if ( ! empty( $options['context'] ) && ! in_array( $context, $options['context'], true ) ) { unset( $properties[ $name ] ); } } } $fields = array_keys( $properties ); if ( ! isset( $request['_fields'] ) ) { return $fields; } $requested_fields = wp_parse_list( $request['_fields'] ); if ( 0 === count( $requested_fields ) ) { return $fields; } // Trim off outside whitespace from the comma delimited list. $requested_fields = array_map( 'trim', $requested_fields ); // Always persist 'id', because it can be needed for add_additional_fields_to_object(). if ( in_array( 'id', $fields, true ) ) { $requested_fields[] = 'id'; } // Return the list of all requested fields which appear in the schema. return array_reduce( $requested_fields, function( $response_fields, $field ) use ( $fields ) { if ( in_array( $field, $fields, true ) ) { $response_fields[] = $field; return $response_fields; } // Check for nested fields if $field is not a direct match. $nested_fields = explode( '.', $field ); // A nested field is included so long as its top-level property // is present in the schema. if ( in_array( $nested_fields[0], $fields, true ) ) { $response_fields[] = $field; } return $response_fields; }, array() ); } /** * Retrieves an array of endpoint arguments from the item schema for the controller. * * @since 4.7.0 * * @param string $method Optional. HTTP method of the request. The arguments for `CREATABLE` requests are * checked for required values and may fall-back to a given default, this is not done * on `EDITABLE` requests. Default WP_REST_Server::CREATABLE. * @return array Endpoint arguments. */ public function get_endpoint_args_for_item_schema( $method = WP_REST_Server::CREATABLE ) { $schema = $this->get_item_schema(); $schema_properties = ! empty( $schema['properties'] ) ? $schema['properties'] : array(); $endpoint_args = array(); $valid_schema_properties = array( 'type', 'format', 'enum', 'items', 'properties', 'additionalProperties', 'minimum', 'maximum', 'exclusiveMinimum', 'exclusiveMaximum', 'minLength', 'maxLength', 'pattern', 'minItems', 'maxItems', 'uniqueItems', ); foreach ( $schema_properties as $field_id => $params ) { // Arguments specified as `readonly` are not allowed to be set. if ( ! empty( $params['readonly'] ) ) { continue; } $endpoint_args[ $field_id ] = array( 'validate_callback' => 'rest_validate_request_arg', 'sanitize_callback' => 'rest_sanitize_request_arg', ); if ( isset( $params['description'] ) ) { $endpoint_args[ $field_id ]['description'] = $params['description']; } if ( WP_REST_Server::CREATABLE === $method && isset( $params['default'] ) ) { $endpoint_args[ $field_id ]['default'] = $params['default']; } if ( WP_REST_Server::CREATABLE === $method && ! empty( $params['required'] ) ) { $endpoint_args[ $field_id ]['required'] = true; } foreach ( $valid_schema_properties as $schema_prop ) { if ( isset( $params[ $schema_prop ] ) ) { $endpoint_args[ $field_id ][ $schema_prop ] = $params[ $schema_prop ]; } } // Merge in any options provided by the schema property. if ( isset( $params['arg_options'] ) ) { // Only use required / default from arg_options on CREATABLE endpoints. if ( WP_REST_Server::CREATABLE !== $method ) { $params['arg_options'] = array_diff_key( $params['arg_options'], array( 'required' => '', 'default' => '', ) ); } $endpoint_args[ $field_id ] = array_merge( $endpoint_args[ $field_id ], $params['arg_options'] ); } } return $endpoint_args; } /** * Sanitizes the slug value. * * @since 4.7.0 * * @internal We can't use sanitize_title() directly, as the second * parameter is the fallback title, which would end up being set to the * request object. * * @see https://github.com/WP-API/WP-API/issues/1585 * * @todo Remove this in favour of https://core.trac.wordpress.org/ticket/34659 * * @param string $slug Slug value passed in request. * @return string Sanitized value for the slug. */ public function sanitize_slug( $slug ) { return sanitize_title( $slug ); } } endpoints/class-wp-rest-plugins-controller.php 0000644 00000066733 15213254037 0015645 0 ustar 00 <?php /** * REST API: WP_REST_Plugins_Controller class * * @package WordPress * @subpackage REST_API * @since 5.5.0 */ /** * Core class to access plugins via the REST API. * * @since 5.5.0 * * @see WP_REST_Controller */ class WP_REST_Plugins_Controller extends WP_REST_Controller { const PATTERN = '[^.\/]+(?:\/[^.\/]+)?'; /** * Plugins controller constructor. * * @since 5.5.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'plugins'; } /** * Registers the routes for the plugins controller. * * @since 5.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(), ), array( 'methods' => WP_REST_Server::CREATABLE, 'callback' => array( $this, 'create_item' ), 'permission_callback' => array( $this, 'create_item_permissions_check' ), 'args' => array( 'slug' => array( 'type' => 'string', 'required' => true, 'description' => __( 'WordPress.org plugin directory slug.' ), 'pattern' => '[\w\-]+', ), 'status' => array( 'description' => __( 'The plugin activation status.' ), 'type' => 'string', 'enum' => is_multisite() ? array( 'inactive', 'active', 'network-active' ) : array( 'inactive', 'active' ), 'default' => 'inactive', ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<plugin>' . self::PATTERN . ')', array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_item' ), 'permission_callback' => array( $this, 'get_item_permissions_check' ), ), 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( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), 'plugin' => array( 'type' => 'string', 'pattern' => self::PATTERN, 'validate_callback' => array( $this, 'validate_plugin_param' ), 'sanitize_callback' => array( $this, 'sanitize_plugin_param' ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks if a given request has access to get plugins. * * @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 get_items_permissions_check( $request ) { if ( ! current_user_can( 'activate_plugins' ) ) { return new WP_Error( 'rest_cannot_view_plugins', __( 'Sorry, you are not allowed to manage plugins for this site.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Retrieves a collection of plugins. * * @since 5.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 ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; $plugins = array(); foreach ( get_plugins() as $file => $data ) { if ( is_wp_error( $this->check_read_permission( $file ) ) ) { continue; } $data['_file'] = $file; if ( ! $this->does_plugin_match_request( $request, $data ) ) { continue; } $plugins[] = $this->prepare_response_for_collection( $this->prepare_item_for_response( $data, $request ) ); } return new WP_REST_Response( $plugins ); } /** * Checks if a given request has access to get a specific plugin. * * @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 for the item, WP_Error object otherwise. */ public function get_item_permissions_check( $request ) { if ( ! current_user_can( 'activate_plugins' ) ) { return new WP_Error( 'rest_cannot_view_plugin', __( 'Sorry, you are not allowed to manage plugins for this site.' ), array( 'status' => rest_authorization_required_code() ) ); } $can_read = $this->check_read_permission( $request['plugin'] ); if ( is_wp_error( $can_read ) ) { return $can_read; } return true; } /** * Retrieves one plugin from the site. * * @since 5.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 ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; $data = $this->get_plugin_data( $request['plugin'] ); if ( is_wp_error( $data ) ) { return $data; } return $this->prepare_item_for_response( $data, $request ); } /** * Checks if the given plugin can be viewed by the current user. * * On multisite, this hides non-active network only plugins if the user does not have permission * to manage network plugins. * * @since 5.5.0 * * @param string $plugin The plugin file to check. * @return true|WP_Error True if can read, a WP_Error instance otherwise. */ protected function check_read_permission( $plugin ) { if ( ! $this->is_plugin_installed( $plugin ) ) { return new WP_Error( 'rest_plugin_not_found', __( 'Plugin not found.' ), array( 'status' => 404 ) ); } if ( ! is_multisite() ) { return true; } if ( ! is_network_only_plugin( $plugin ) || is_plugin_active( $plugin ) || current_user_can( 'manage_network_plugins' ) ) { return true; } return new WP_Error( 'rest_cannot_view_plugin', __( 'Sorry, you are not allowed to manage this plugin.' ), array( 'status' => rest_authorization_required_code() ) ); } /** * Checks if a given request has access to upload plugins. * * @since 5.5.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( 'install_plugins' ) ) { return new WP_Error( 'rest_cannot_install_plugin', __( 'Sorry, you are not allowed to install plugins on this site.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( 'inactive' !== $request['status'] && ! current_user_can( 'activate_plugins' ) ) { return new WP_Error( 'rest_cannot_activate_plugin', __( 'Sorry, you are not allowed to activate plugins.' ), array( 'status' => rest_authorization_required_code(), ) ); } return true; } /** * Uploads a plugin and optionally activates it. * * @since 5.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 create_item( $request ) { require_once ABSPATH . 'wp-admin/includes/file.php'; require_once ABSPATH . 'wp-admin/includes/plugin.php'; require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; $slug = $request['slug']; // Verify filesystem is accessible first. $filesystem_available = $this->is_filesystem_available(); if ( is_wp_error( $filesystem_available ) ) { return $filesystem_available; } $api = plugins_api( 'plugin_information', array( 'slug' => $slug, 'fields' => array( 'sections' => false, 'language_packs' => true, ), ) ); if ( is_wp_error( $api ) ) { if ( false !== strpos( $api->get_error_message(), 'Plugin not found.' ) ) { $api->add_data( array( 'status' => 404 ) ); } else { $api->add_data( array( 'status' => 500 ) ); } return $api; } $skin = new WP_Ajax_Upgrader_Skin(); $upgrader = new Plugin_Upgrader( $skin ); $result = $upgrader->install( $api->download_link ); if ( is_wp_error( $result ) ) { $result->add_data( array( 'status' => 500 ) ); return $result; } // This should be the same as $result above. if ( is_wp_error( $skin->result ) ) { $skin->result->add_data( array( 'status' => 500 ) ); return $skin->result; } if ( $skin->get_errors()->has_errors() ) { $error = $skin->get_errors(); $error->add_data( array( 'status' => 500 ) ); return $error; } if ( is_null( $result ) ) { global $wp_filesystem; // Pass through the error from WP_Filesystem if one was raised. if ( $wp_filesystem instanceof WP_Filesystem_Base && is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->has_errors() ) { return new WP_Error( 'unable_to_connect_to_filesystem', $wp_filesystem->errors->get_error_message(), array( 'status' => 500 ) ); } return new WP_Error( 'unable_to_connect_to_filesystem', __( 'Unable to connect to the filesystem. Please confirm your credentials.' ), array( 'status' => 500 ) ); } $file = $upgrader->plugin_info(); if ( ! $file ) { return new WP_Error( 'unable_to_determine_installed_plugin', __( 'Unable to determine what plugin was installed.' ), array( 'status' => 500 ) ); } if ( 'inactive' !== $request['status'] ) { $can_change_status = $this->plugin_status_permission_check( $file, $request['status'], 'inactive' ); if ( is_wp_error( $can_change_status ) ) { return $can_change_status; } $changed_status = $this->handle_plugin_status( $file, $request['status'], 'inactive' ); if ( is_wp_error( $changed_status ) ) { return $changed_status; } } // Install translations. $installed_locales = array_values( get_available_languages() ); /** This filter is documented in wp-includes/update.php */ $installed_locales = apply_filters( 'plugins_update_check_locales', $installed_locales ); $language_packs = array_map( function( $item ) { return (object) $item; }, $api->language_packs ); $language_packs = array_filter( $language_packs, function( $pack ) use ( $installed_locales ) { return in_array( $pack->language, $installed_locales, true ); } ); if ( $language_packs ) { $lp_upgrader = new Language_Pack_Upgrader( $skin ); // Install all applicable language packs for the plugin. $lp_upgrader->bulk_upgrade( $language_packs ); } $path = WP_PLUGIN_DIR . '/' . $file; $data = get_plugin_data( $path, false, false ); $data['_file'] = $file; $response = $this->prepare_item_for_response( $data, $request ); $response->set_status( 201 ); $response->header( 'Location', rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, substr( $file, 0, - 4 ) ) ) ); return $response; } /** * Checks if a given request has access to update a specific plugin. * * @since 5.5.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 ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; if ( ! current_user_can( 'activate_plugins' ) ) { return new WP_Error( 'rest_cannot_manage_plugins', __( 'Sorry, you are not allowed to manage plugins for this site.' ), array( 'status' => rest_authorization_required_code() ) ); } $can_read = $this->check_read_permission( $request['plugin'] ); if ( is_wp_error( $can_read ) ) { return $can_read; } $status = $this->get_plugin_status( $request['plugin'] ); if ( $request['status'] && $status !== $request['status'] ) { $can_change_status = $this->plugin_status_permission_check( $request['plugin'], $request['status'], $status ); if ( is_wp_error( $can_change_status ) ) { return $can_change_status; } } return true; } /** * Updates one plugin. * * @since 5.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 update_item( $request ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; $data = $this->get_plugin_data( $request['plugin'] ); if ( is_wp_error( $data ) ) { return $data; } $status = $this->get_plugin_status( $request['plugin'] ); if ( $request['status'] && $status !== $request['status'] ) { $handled = $this->handle_plugin_status( $request['plugin'], $request['status'], $status ); if ( is_wp_error( $handled ) ) { return $handled; } } $this->update_additional_fields_for_object( $data, $request ); $request['context'] = 'edit'; return $this->prepare_item_for_response( $data, $request ); } /** * Checks if a given request has access to delete a specific plugin. * * @since 5.5.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 ) { if ( ! current_user_can( 'activate_plugins' ) ) { return new WP_Error( 'rest_cannot_manage_plugins', __( 'Sorry, you are not allowed to manage plugins for this site.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! current_user_can( 'delete_plugins' ) ) { return new WP_Error( 'rest_cannot_manage_plugins', __( 'Sorry, you are not allowed to delete plugins for this site.' ), array( 'status' => rest_authorization_required_code() ) ); } $can_read = $this->check_read_permission( $request['plugin'] ); if ( is_wp_error( $can_read ) ) { return $can_read; } return true; } /** * Deletes one plugin from the site. * * @since 5.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 delete_item( $request ) { require_once ABSPATH . 'wp-admin/includes/file.php'; require_once ABSPATH . 'wp-admin/includes/plugin.php'; $data = $this->get_plugin_data( $request['plugin'] ); if ( is_wp_error( $data ) ) { return $data; } if ( is_plugin_active( $request['plugin'] ) ) { return new WP_Error( 'rest_cannot_delete_active_plugin', __( 'Cannot delete an active plugin. Please deactivate it first.' ), array( 'status' => 400 ) ); } $filesystem_available = $this->is_filesystem_available(); if ( is_wp_error( $filesystem_available ) ) { return $filesystem_available; } $prepared = $this->prepare_item_for_response( $data, $request ); $deleted = delete_plugins( array( $request['plugin'] ) ); if ( is_wp_error( $deleted ) ) { $deleted->add_data( array( 'status' => 500 ) ); return $deleted; } return new WP_REST_Response( array( 'deleted' => true, 'previous' => $prepared->get_data(), ) ); } /** * Prepares the plugin for the REST response. * * @since 5.5.0 * * @param mixed $item Unmarked up and untranslated plugin data from {@see get_plugin_data()}. * @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 ) { $item = _get_plugin_data_markup_translate( $item['_file'], $item, false ); $marked = _get_plugin_data_markup_translate( $item['_file'], $item, true ); $data = array( 'plugin' => substr( $item['_file'], 0, - 4 ), 'status' => $this->get_plugin_status( $item['_file'] ), 'name' => $item['Name'], 'plugin_uri' => $item['PluginURI'], 'author' => $item['Author'], 'author_uri' => $item['AuthorURI'], 'description' => array( 'raw' => $item['Description'], 'rendered' => $marked['Description'], ), 'version' => $item['Version'], 'network_only' => $item['Network'], 'requires_wp' => $item['RequiresWP'], 'requires_php' => $item['RequiresPHP'], 'textdomain' => $item['TextDomain'], ); $data = $this->add_additional_fields_to_object( $data, $request ); $response = new WP_REST_Response( $data ); $response->add_links( $this->prepare_links( $item ) ); /** * Filters the plugin data for a response. * * @since 5.5.0 * * @param WP_REST_Response $response The response object. * @param array $item The plugin item from {@see get_plugin_data()}. * @param WP_REST_Request $request The request object. */ return apply_filters( 'rest_prepare_plugin', $response, $item, $request ); } /** * Prepares links for the request. * * @since 5.5.0 * * @param array $item The plugin item. * @return array[] */ protected function prepare_links( $item ) { return array( 'self' => array( 'href' => rest_url( sprintf( '%s/%s/%s', $this->namespace, $this->rest_base, substr( $item['_file'], 0, - 4 ) ) ), ), ); } /** * Gets the plugin header data for a plugin. * * @since 5.5.0 * * @param string $plugin The plugin file to get data for. * @return array|WP_Error The plugin data, or a WP_Error if the plugin is not installed. */ protected function get_plugin_data( $plugin ) { $plugins = get_plugins(); if ( ! isset( $plugins[ $plugin ] ) ) { return new WP_Error( 'rest_plugin_not_found', __( 'Plugin not found.' ), array( 'status' => 404 ) ); } $data = $plugins[ $plugin ]; $data['_file'] = $plugin; return $data; } /** * Get's the activation status for a plugin. * * @since 5.5.0 * * @param string $plugin The plugin file to check. * @return string Either 'network-active', 'active' or 'inactive'. */ protected function get_plugin_status( $plugin ) { if ( is_plugin_active_for_network( $plugin ) ) { return 'network-active'; } if ( is_plugin_active( $plugin ) ) { return 'active'; } return 'inactive'; } /** * Handle updating a plugin's status. * * @since 5.5.0 * * @param string $plugin The plugin file to update. * @param string $new_status The plugin's new status. * @param string $current_status The plugin's current status. * * @return true|WP_Error */ protected function plugin_status_permission_check( $plugin, $new_status, $current_status ) { if ( is_multisite() && ( 'network-active' === $current_status || 'network-active' === $new_status ) && ! current_user_can( 'manage_network_plugins' ) ) { return new WP_Error( 'rest_cannot_manage_network_plugins', __( 'Sorry, you are not allowed to manage network plugins.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ( 'active' === $new_status || 'network-active' === $new_status ) && ! current_user_can( 'activate_plugin', $plugin ) ) { return new WP_Error( 'rest_cannot_activate_plugin', __( 'Sorry, you are not allowed to activate this plugin.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( 'inactive' === $new_status && ! current_user_can( 'deactivate_plugin', $plugin ) ) { return new WP_Error( 'rest_cannot_deactivate_plugin', __( 'Sorry, you are not allowed to deactivate this plugin.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Handle updating a plugin's status. * * @since 5.5.0 * * @param string $plugin The plugin file to update. * @param string $new_status The plugin's new status. * @param string $current_status The plugin's current status. * @return true|WP_Error */ protected function handle_plugin_status( $plugin, $new_status, $current_status ) { if ( 'inactive' === $new_status ) { deactivate_plugins( $plugin, false, 'network-active' === $current_status ); return true; } if ( 'active' === $new_status && 'network-active' === $current_status ) { return true; } $network_activate = 'network-active' === $new_status; if ( is_multisite() && ! $network_activate && is_network_only_plugin( $plugin ) ) { return new WP_Error( 'rest_network_only_plugin', __( 'Network only plugin must be network activated.' ), array( 'status' => 400 ) ); } $activated = activate_plugin( $plugin, '', $network_activate ); if ( is_wp_error( $activated ) ) { $activated->add_data( array( 'status' => 500 ) ); return $activated; } return true; } /** * Checks that the "plugin" parameter is a valid path. * * @since 5.5.0 * * @param string $file The plugin file parameter. * @return bool */ public function validate_plugin_param( $file ) { if ( ! is_string( $file ) || ! preg_match( '/' . self::PATTERN . '/u', $file ) ) { return false; } $validated = validate_file( plugin_basename( $file ) ); return 0 === $validated; } /** * Sanitizes the "plugin" parameter to be a proper plugin file with ".php" appended. * * @since 5.5.0 * * @param string $file The plugin file parameter. * @return string */ public function sanitize_plugin_param( $file ) { return plugin_basename( sanitize_text_field( $file . '.php' ) ); } /** * Checks if the plugin matches the requested parameters. * * @since 5.5.0 * * @param WP_REST_Request $request The request to require the plugin matches against. * @param array $item The plugin item. * * @return bool */ protected function does_plugin_match_request( $request, $item ) { $search = $request['search']; if ( $search ) { $matched_search = false; foreach ( $item as $field ) { if ( is_string( $field ) && false !== strpos( strip_tags( $field ), $search ) ) { $matched_search = true; break; } } if ( ! $matched_search ) { return false; } } $status = $request['status']; if ( $status && ! in_array( $this->get_plugin_status( $item['_file'] ), $status, true ) ) { return false; } return true; } /** * Checks if the plugin is installed. * * @since 5.5.0 * * @param string $plugin The plugin file. * @return bool */ protected function is_plugin_installed( $plugin ) { return file_exists( WP_PLUGIN_DIR . '/' . $plugin ); } /** * Determine if the endpoints are available. * * Only the 'Direct' filesystem transport, and SSH/FTP when credentials are stored are supported at present. * * @since 5.5.0 * * @return true|WP_Error True if filesystem is available, WP_Error otherwise. */ protected function is_filesystem_available() { $filesystem_method = get_filesystem_method(); if ( 'direct' === $filesystem_method ) { return true; } ob_start(); $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); ob_end_clean(); if ( $filesystem_credentials_are_stored ) { return true; } return new WP_Error( 'fs_unavailable', __( 'The filesystem is currently unavailable for managing plugins.' ), array( 'status' => 500 ) ); } /** * Retrieves the plugin's schema, conforming to JSON Schema. * * @since 5.5.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' => 'plugin', 'type' => 'object', 'properties' => array( 'plugin' => array( 'description' => __( 'The plugin file.' ), 'type' => 'string', 'pattern' => self::PATTERN, 'readonly' => true, 'context' => array( 'view', 'edit', 'embed' ), ), 'status' => array( 'description' => __( 'The plugin activation status.' ), 'type' => 'string', 'enum' => is_multisite() ? array( 'inactive', 'active', 'network-active' ) : array( 'inactive', 'active' ), 'context' => array( 'view', 'edit', 'embed' ), ), 'name' => array( 'description' => __( 'The plugin name.' ), 'type' => 'string', 'readonly' => true, 'context' => array( 'view', 'edit', 'embed' ), ), 'plugin_uri' => array( 'description' => __( 'The plugin\'s website address.' ), 'type' => 'string', 'format' => 'uri', 'readonly' => true, 'context' => array( 'view', 'edit' ), ), 'author' => array( 'description' => __( 'The plugin author.' ), 'type' => 'object', 'readonly' => true, 'context' => array( 'view', 'edit' ), ), 'author_uri' => array( 'description' => __( 'Plugin author\'s website address.' ), 'type' => 'string', 'format' => 'uri', 'readonly' => true, 'context' => array( 'view', 'edit' ), ), 'description' => array( 'description' => __( 'The plugin description.' ), 'type' => 'object', 'readonly' => true, 'context' => array( 'view', 'edit' ), 'properties' => array( 'raw' => array( 'description' => __( 'The raw plugin description.' ), 'type' => 'string', ), 'rendered' => array( 'description' => __( 'The plugin description formatted for display.' ), 'type' => 'string', ), ), ), 'version' => array( 'description' => __( 'The plugin version number.' ), 'type' => 'string', 'readonly' => true, 'context' => array( 'view', 'edit' ), ), 'network_only' => array( 'description' => __( 'Whether the plugin can only be activated network-wide.' ), 'type' => 'boolean', 'readonly' => true, 'context' => array( 'view', 'edit', 'embed' ), ), 'requires_wp' => array( 'description' => __( 'Minimum required version of WordPress.' ), 'type' => 'string', 'readonly' => true, 'context' => array( 'view', 'edit', 'embed' ), ), 'requires_php' => array( 'description' => __( 'Minimum required version of PHP.' ), 'type' => 'string', 'readonly' => true, 'context' => array( 'view', 'edit', 'embed' ), ), 'textdomain' => array( 'description' => __( 'The plugin\'s text domain.' ), 'type' => 'string', 'readonly' => true, 'context' => array( 'view', 'edit' ), ), ), ); return $this->add_additional_fields_schema( $this->schema ); } /** * Retrieves the query params for the collections. * * @since 5.5.0 * * @return array Query parameters for the collection. */ public function get_collection_params() { $query_params = parent::get_collection_params(); $query_params['context']['default'] = 'view'; $query_params['status'] = array( 'description' => __( 'Limits results to plugins with the given status.' ), 'type' => 'array', 'items' => array( 'type' => 'string', 'enum' => is_multisite() ? array( 'inactive', 'active', 'network-active' ) : array( 'inactive', 'active' ), ), ); unset( $query_params['page'], $query_params['per_page'] ); return $query_params; } } endpoints/class-wp-rest-post-statuses-controller.php 0000644 00000023547 15213254037 0017016 0 ustar 00 <?php /** * REST API: WP_REST_Post_Statuses_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class used to access post statuses via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Post_Statuses_Controller extends WP_REST_Controller { /** * Constructor. * * @since 4.7.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'statuses'; } /** * Registers the routes for the objects of the controller. * * @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(), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<status>[\w-]+)', array( 'args' => array( 'status' => array( 'description' => __( 'An alphanumeric identifier for the status.' ), 'type' => 'string', ), ), 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' ) ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks whether a given request has permission to read post statuses. * * @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, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { if ( 'edit' === $request['context'] ) { $types = get_post_types( array( 'show_in_rest' => true ), 'objects' ); foreach ( $types as $type ) { if ( current_user_can( $type->cap->edit_posts ) ) { return true; } } return new WP_Error( 'rest_cannot_view', __( 'Sorry, you are not allowed to manage post statuses.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Retrieves all post statuses, depending on user context. * * @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_items( $request ) { $data = array(); $statuses = get_post_stati( array( 'internal' => false ), 'object' ); $statuses['trash'] = get_post_status_object( 'trash' ); foreach ( $statuses as $slug => $obj ) { $ret = $this->check_read_permission( $obj ); if ( ! $ret ) { continue; } $status = $this->prepare_item_for_response( $obj, $request ); $data[ $obj->name ] = $this->prepare_response_for_collection( $status ); } return rest_ensure_response( $data ); } /** * Checks if a given request has access to read a post status. * * @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, WP_Error object otherwise. */ public function get_item_permissions_check( $request ) { $status = get_post_status_object( $request['status'] ); if ( empty( $status ) ) { return new WP_Error( 'rest_status_invalid', __( 'Invalid status.' ), array( 'status' => 404 ) ); } $check = $this->check_read_permission( $status ); if ( ! $check ) { return new WP_Error( 'rest_cannot_read_status', __( 'Cannot view status.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Checks whether a given post status should be visible. * * @since 4.7.0 * * @param object $status Post status. * @return bool True if the post status is visible, otherwise false. */ protected function check_read_permission( $status ) { if ( true === $status->public ) { return true; } if ( false === $status->internal || 'trash' === $status->name ) { $types = get_post_types( array( 'show_in_rest' => true ), 'objects' ); foreach ( $types as $type ) { if ( current_user_can( $type->cap->edit_posts ) ) { return true; } } } return false; } /** * Retrieves a specific post status. * * @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 ) { $obj = get_post_status_object( $request['status'] ); if ( empty( $obj ) ) { return new WP_Error( 'rest_status_invalid', __( 'Invalid status.' ), array( 'status' => 404 ) ); } $data = $this->prepare_item_for_response( $obj, $request ); return rest_ensure_response( $data ); } /** * Prepares a post status object for serialization. * * @since 4.7.0 * * @param stdClass $status Post status data. * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response Post status data. */ public function prepare_item_for_response( $status, $request ) { $fields = $this->get_fields_for_response( $request ); $data = array(); if ( in_array( 'name', $fields, true ) ) { $data['name'] = $status->label; } if ( in_array( 'private', $fields, true ) ) { $data['private'] = (bool) $status->private; } if ( in_array( 'protected', $fields, true ) ) { $data['protected'] = (bool) $status->protected; } if ( in_array( 'public', $fields, true ) ) { $data['public'] = (bool) $status->public; } if ( in_array( 'queryable', $fields, true ) ) { $data['queryable'] = (bool) $status->publicly_queryable; } if ( in_array( 'show_in_list', $fields, true ) ) { $data['show_in_list'] = (bool) $status->show_in_admin_all_list; } if ( in_array( 'slug', $fields, true ) ) { $data['slug'] = $status->name; } if ( in_array( 'date_floating', $fields, true ) ) { $data['date_floating'] = $status->date_floating; } $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 ( 'publish' === $status->name ) { $response->add_link( 'archives', rest_url( 'wp/v2/posts' ) ); } else { $response->add_link( 'archives', add_query_arg( 'status', $status->name, rest_url( 'wp/v2/posts' ) ) ); } /** * Filters a status returned from the REST API. * * Allows modification of the status data right before it is returned. * * @since 4.7.0 * * @param WP_REST_Response $response The response object. * @param object $status The original status object. * @param WP_REST_Request $request Request used to generate the response. */ return apply_filters( 'rest_prepare_status', $response, $status, $request ); } /** * Retrieves the post status' 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' => 'status', 'type' => 'object', 'properties' => array( 'name' => array( 'description' => __( 'The title for the status.' ), 'type' => 'string', 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'private' => array( 'description' => __( 'Whether posts with this status should be private.' ), 'type' => 'boolean', 'context' => array( 'edit' ), 'readonly' => true, ), 'protected' => array( 'description' => __( 'Whether posts with this status should be protected.' ), 'type' => 'boolean', 'context' => array( 'edit' ), 'readonly' => true, ), 'public' => array( 'description' => __( 'Whether posts of this status should be shown in the front end of the site.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'queryable' => array( 'description' => __( 'Whether posts with this status should be publicly-queryable.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'show_in_list' => array( 'description' => __( 'Whether to include posts in the edit listing for their post type.' ), 'type' => 'boolean', 'context' => array( 'edit' ), 'readonly' => true, ), 'slug' => array( 'description' => __( 'An alphanumeric identifier for the status.' ), 'type' => 'string', 'context' => array( 'embed', 'view', 'edit' ), 'readonly' => true, ), 'date_floating' => array( 'description' => __( 'Whether posts of this status may have floating published dates.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), ), ); $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() { return array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), ); } } endpoints/class-wp-rest-post-types-controller.php 0000644 00000023503 15213254037 0016277 0 ustar 00 <?php /** * REST API: WP_REST_Post_Types_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class to access post types via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Post_Types_Controller extends WP_REST_Controller { /** * Constructor. * * @since 4.7.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'types'; } /** * Registers the routes for the objects of the controller. * * @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(), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<type>[\w-]+)', array( 'args' => array( 'type' => array( 'description' => __( 'An alphanumeric identifier for the post type.' ), 'type' => 'string', ), ), array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_item' ), 'permission_callback' => '__return_true', 'args' => array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks whether a given request has permission to read types. * * @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, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { if ( 'edit' === $request['context'] ) { $types = get_post_types( array( 'show_in_rest' => true ), 'objects' ); foreach ( $types as $type ) { if ( current_user_can( $type->cap->edit_posts ) ) { return true; } } return new WP_Error( 'rest_cannot_view', __( 'Sorry, you are not allowed to edit posts in this post type.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Retrieves all public post types. * * @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_items( $request ) { $data = array(); $types = get_post_types( array( 'show_in_rest' => true ), 'objects' ); foreach ( $types as $type ) { if ( 'edit' === $request['context'] && ! current_user_can( $type->cap->edit_posts ) ) { continue; } $post_type = $this->prepare_item_for_response( $type, $request ); $data[ $type->name ] = $this->prepare_response_for_collection( $post_type ); } return rest_ensure_response( $data ); } /** * Retrieves a specific post type. * * @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 ) { $obj = get_post_type_object( $request['type'] ); if ( empty( $obj ) ) { return new WP_Error( 'rest_type_invalid', __( 'Invalid post type.' ), array( 'status' => 404 ) ); } if ( empty( $obj->show_in_rest ) ) { return new WP_Error( 'rest_cannot_read_type', __( 'Cannot view post type.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( 'edit' === $request['context'] && ! current_user_can( $obj->cap->edit_posts ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit posts in this post type.' ), array( 'status' => rest_authorization_required_code() ) ); } $data = $this->prepare_item_for_response( $obj, $request ); return rest_ensure_response( $data ); } /** * Prepares a post type object for serialization. * * @since 4.7.0 * * @param WP_Post_Type $post_type Post type object. * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $post_type, $request ) { $taxonomies = wp_list_filter( get_object_taxonomies( $post_type->name, 'objects' ), array( 'show_in_rest' => true ) ); $taxonomies = wp_list_pluck( $taxonomies, 'name' ); $base = ! empty( $post_type->rest_base ) ? $post_type->rest_base : $post_type->name; $supports = get_all_post_type_supports( $post_type->name ); $fields = $this->get_fields_for_response( $request ); $data = array(); if ( in_array( 'capabilities', $fields, true ) ) { $data['capabilities'] = $post_type->cap; } if ( in_array( 'description', $fields, true ) ) { $data['description'] = $post_type->description; } if ( in_array( 'hierarchical', $fields, true ) ) { $data['hierarchical'] = $post_type->hierarchical; } if ( in_array( 'viewable', $fields, true ) ) { $data['viewable'] = is_post_type_viewable( $post_type ); } if ( in_array( 'labels', $fields, true ) ) { $data['labels'] = $post_type->labels; } if ( in_array( 'name', $fields, true ) ) { $data['name'] = $post_type->label; } if ( in_array( 'slug', $fields, true ) ) { $data['slug'] = $post_type->name; } if ( in_array( 'supports', $fields, true ) ) { $data['supports'] = $supports; } if ( in_array( 'taxonomies', $fields, true ) ) { $data['taxonomies'] = array_values( $taxonomies ); } if ( in_array( 'rest_base', $fields, true ) ) { $data['rest_base'] = $base; } $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 ); $response->add_links( array( 'collection' => array( 'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ), ), 'https://api.w.org/items' => array( 'href' => rest_url( sprintf( 'wp/v2/%s', $base ) ), ), ) ); /** * Filters a post type returned from the API. * * Allows modification of the post type data right before it is returned. * * @since 4.7.0 * * @param WP_REST_Response $response The response object. * @param WP_Post_Type $post_type The original post type object. * @param WP_REST_Request $request Request used to generate the response. */ return apply_filters( 'rest_prepare_post_type', $response, $post_type, $request ); } /** * Retrieves the post type'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' => 'type', 'type' => 'object', 'properties' => array( 'capabilities' => array( 'description' => __( 'All capabilities used by the post type.' ), 'type' => 'object', 'context' => array( 'edit' ), 'readonly' => true, ), 'description' => array( 'description' => __( 'A human-readable description of the post type.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'hierarchical' => array( 'description' => __( 'Whether or not the post type should have children.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'viewable' => array( 'description' => __( 'Whether or not the post type can be viewed.' ), 'type' => 'boolean', 'context' => array( 'edit' ), 'readonly' => true, ), 'labels' => array( 'description' => __( 'Human-readable labels for the post type for various contexts.' ), 'type' => 'object', 'context' => array( 'edit' ), 'readonly' => true, ), 'name' => array( 'description' => __( 'The title for the post type.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'slug' => array( 'description' => __( 'An alphanumeric identifier for the post type.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'supports' => array( 'description' => __( 'All features, supported by the post type.' ), 'type' => 'object', 'context' => array( 'edit' ), 'readonly' => true, ), 'taxonomies' => array( 'description' => __( 'Taxonomies associated with post type.' ), 'type' => 'array', 'items' => array( 'type' => 'string', ), 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'rest_base' => array( 'description' => __( 'REST base route for the post type.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), ), ); $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() { return array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), ); } } endpoints/class-wp-rest-posts-controller.php 0000644 00000253720 15213254037 0015326 0 ustar 00 <?php /** * REST API: WP_REST_Posts_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class to access posts via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Posts_Controller extends WP_REST_Controller { /** * Post type. * * @since 4.7.0 * @var string */ protected $post_type; /** * Instance of a post meta fields object. * * @since 4.7.0 * @var WP_REST_Post_Meta_Fields */ protected $meta; /** * Passwordless post access permitted. * * @since 5.7.1 * @var int[] */ protected $password_check_passed = array(); /** * Constructor. * * @since 4.7.0 * * @param string $post_type Post type. */ public function __construct( $post_type ) { $this->post_type = $post_type; $this->namespace = 'wp/v2'; $obj = get_post_type_object( $post_type ); $this->rest_base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name; $this->meta = new WP_REST_Post_Meta_Fields( $this->post_type ); } /** * Registers the routes for the objects of the controller. * * @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 ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); $schema = $this->get_item_schema(); $get_item_args = array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), ); if ( isset( $schema['properties']['password'] ) ) { $get_item_args['password'] = array( 'description' => __( 'The password for the post if it is password protected.' ), 'type' => 'string', ); } register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array( 'args' => array( 'id' => array( 'description' => __( 'Unique identifier for the object.' ), 'type' => 'integer', ), ), array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_item' ), 'permission_callback' => array( $this, 'get_item_permissions_check' ), 'args' => $get_item_args, ), 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' => __( 'Whether to bypass Trash and force deletion.' ), ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks if a given request has access to read posts. * * @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, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { $post_type = get_post_type_object( $this->post_type ); 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 posts in this post type.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Override the result of the post password check for REST requested posts. * * Allow users to read the content of password protected posts if they have * previously passed a permission check or if they have the `edit_post` capability * for the post being checked. * * @since 5.7.1 * * @param bool $required Whether the post requires a password check. * @param WP_Post $post The post been password checked. * @return bool Result of password check taking in to account REST API considerations. */ public function check_password_required( $required, $post ) { if ( ! $required ) { return $required; } $post = get_post( $post ); if ( ! $post ) { return $required; } if ( ! empty( $this->password_check_passed[ $post->ID ] ) ) { // Password previously checked and approved. return false; } return ! current_user_can( 'edit_post', $post->ID ); } /** * Retrieves a collection of posts. * * @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_items( $request ) { // Ensure a search string is set in case the orderby is set to 'relevance'. if ( ! empty( $request['orderby'] ) && 'relevance' === $request['orderby'] && empty( $request['search'] ) ) { return new WP_Error( 'rest_no_search_term_defined', __( 'You need to define a search term to order by relevance.' ), array( 'status' => 400 ) ); } // Ensure an include parameter is set in case the orderby is set to 'include'. if ( ! empty( $request['orderby'] ) && 'include' === $request['orderby'] && empty( $request['include'] ) ) { return new WP_Error( 'rest_orderby_include_missing_include', __( 'You need to define an include parameter to order by include.' ), array( 'status' => 400 ) ); } // Retrieve the list of registered collection query parameters. $registered = $this->get_collection_params(); $args = array(); /* * 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( 'author' => 'author__in', 'author_exclude' => 'author__not_in', 'exclude' => 'post__not_in', 'include' => 'post__in', 'menu_order' => 'menu_order', 'offset' => 'offset', 'order' => 'order', 'orderby' => 'orderby', 'page' => 'paged', 'parent' => 'post_parent__in', 'parent_exclude' => 'post_parent__not_in', 'search' => 's', 'slug' => 'post_name__in', 'status' => 'post_status', ); /* * For each known parameter which is both registered and present in the request, * set the parameter's value on the query $args. */ foreach ( $parameter_mappings as $api_param => $wp_param ) { if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) { $args[ $wp_param ] = $request[ $api_param ]; } } // Check for & assign any parameters which require special handling or setting. $args['date_query'] = array(); // Set before into date query. Date query must be specified as an array of an array. if ( isset( $registered['before'], $request['before'] ) ) { $args['date_query'][0]['before'] = $request['before']; } // Set after into date query. Date query must be specified as an array of an array. if ( isset( $registered['after'], $request['after'] ) ) { $args['date_query'][0]['after'] = $request['after']; } // Ensure our per_page parameter overrides any provided posts_per_page filter. if ( isset( $registered['per_page'] ) ) { $args['posts_per_page'] = $request['per_page']; } if ( isset( $registered['sticky'], $request['sticky'] ) ) { $sticky_posts = get_option( 'sticky_posts', array() ); if ( ! is_array( $sticky_posts ) ) { $sticky_posts = array(); } if ( $request['sticky'] ) { /* * As post__in will be used to only get sticky posts, * we have to support the case where post__in was already * specified. */ $args['post__in'] = $args['post__in'] ? array_intersect( $sticky_posts, $args['post__in'] ) : $sticky_posts; /* * If we intersected, but there are no post IDs in common, * WP_Query won't return "no posts" for post__in = array() * so we have to fake it a bit. */ if ( ! $args['post__in'] ) { $args['post__in'] = array( 0 ); } } elseif ( $sticky_posts ) { /* * As post___not_in will be used to only get posts that * are not sticky, we have to support the case where post__not_in * was already specified. */ $args['post__not_in'] = array_merge( $args['post__not_in'], $sticky_posts ); } } // Force the post_type argument, since it's not a user input variable. $args['post_type'] = $this->post_type; /** * Filters the query arguments for a request. * * Enables adding extra arguments or setting defaults for a post collection request. * * @since 4.7.0 * * @link https://developer.wordpress.org/reference/classes/wp_query/ * * @param array $args Key value array of query var to query value. * @param WP_REST_Request $request The request used. */ $args = apply_filters( "rest_{$this->post_type}_query", $args, $request ); $query_args = $this->prepare_items_query( $args, $request ); $taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) ); if ( ! empty( $request['tax_relation'] ) ) { $query_args['tax_query'] = array( 'relation' => $request['tax_relation'] ); } foreach ( $taxonomies as $taxonomy ) { $base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name; $tax_exclude = $base . '_exclude'; if ( ! empty( $request[ $base ] ) ) { $query_args['tax_query'][] = array( 'taxonomy' => $taxonomy->name, 'field' => 'term_id', 'terms' => $request[ $base ], 'include_children' => false, ); } if ( ! empty( $request[ $tax_exclude ] ) ) { $query_args['tax_query'][] = array( 'taxonomy' => $taxonomy->name, 'field' => 'term_id', 'terms' => $request[ $tax_exclude ], 'include_children' => false, 'operator' => 'NOT IN', ); } } $posts_query = new WP_Query(); $query_result = $posts_query->query( $query_args ); // Allow access to all password protected posts if the context is edit. if ( 'edit' === $request['context'] ) { add_filter( 'post_password_required', array( $this, 'check_password_required' ), 10, 2 ); } $posts = array(); foreach ( $query_result as $post ) { if ( 'edit' === $request['context'] ) { $permission = $this->check_update_permission( $post ); } else { $permission = $this->check_read_permission( $post ); } if ( ! $permission ) { continue; } $data = $this->prepare_item_for_response( $post, $request ); $posts[] = $this->prepare_response_for_collection( $data ); } // Reset filter. if ( 'edit' === $request['context'] ) { remove_filter( 'post_password_required', array( $this, 'check_password_required' ) ); } $page = (int) $query_args['paged']; $total_posts = $posts_query->found_posts; if ( $total_posts < 1 ) { // Out-of-bounds, run the query again without LIMIT for total count. unset( $query_args['paged'] ); $count_query = new WP_Query(); $count_query->query( $query_args ); $total_posts = $count_query->found_posts; } $max_pages = ceil( $total_posts / (int) $posts_query->query_vars['posts_per_page'] ); if ( $page > $max_pages && $total_posts > 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 ) ); } $response = rest_ensure_response( $posts ); $response->header( 'X-WP-Total', (int) $total_posts ); $response->header( 'X-WP-TotalPages', (int) $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_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 post, if the ID is valid. * * @since 4.7.2 * * @param int $id Supplied ID. * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise. */ protected function get_post( $id ) { $error = new WP_Error( 'rest_post_invalid_id', __( 'Invalid post ID.' ), array( 'status' => 404 ) ); if ( (int) $id <= 0 ) { return $error; } $post = get_post( (int) $id ); if ( empty( $post ) || empty( $post->ID ) || $this->post_type !== $post->post_type ) { return $error; } return $post; } /** * Checks if a given request has access to read a post. * * @since 4.7.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 otherwise. */ public function get_item_permissions_check( $request ) { $post = $this->get_post( $request['id'] ); if ( is_wp_error( $post ) ) { return $post; } if ( 'edit' === $request['context'] && $post && ! $this->check_update_permission( $post ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit this post.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( $post && ! empty( $request['password'] ) ) { // Check post password, and return error if invalid. if ( ! hash_equals( $post->post_password, $request['password'] ) ) { return new WP_Error( 'rest_post_incorrect_password', __( 'Incorrect post password.' ), array( 'status' => 403 ) ); } } // Allow access to all password protected posts if the context is edit. if ( 'edit' === $request['context'] ) { add_filter( 'post_password_required', array( $this, 'check_password_required' ), 10, 2 ); } if ( $post ) { return $this->check_read_permission( $post ); } return true; } /** * Checks if the user can access password-protected content. * * This method determines whether we need to override the regular password * check in core with a filter. * * @since 4.7.0 * * @param WP_Post $post Post to check against. * @param WP_REST_Request $request Request data to check. * @return bool True if the user can access password-protected content, otherwise false. */ public function can_access_password_content( $post, $request ) { if ( empty( $post->post_password ) ) { // No filter required. return false; } /* * Users always gets access to password protected content in the edit * context if they have the `edit_post` meta capability. */ if ( 'edit' === $request['context'] && current_user_can( 'edit_post', $post->ID ) ) { return true; } // No password, no auth. if ( empty( $request['password'] ) ) { return false; } // Double-check the request password. return hash_equals( $post->post_password, $request['password'] ); } /** * Retrieves a single post. * * @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 ) { $post = $this->get_post( $request['id'] ); if ( is_wp_error( $post ) ) { return $post; } $data = $this->prepare_item_for_response( $post, $request ); $response = rest_ensure_response( $data ); if ( is_post_type_viewable( get_post_type_object( $post->post_type ) ) ) { $response->link_header( 'alternate', get_permalink( $post->ID ), array( 'type' => 'text/html' ) ); } return $response; } /** * Checks if a given request has access to create a post. * * @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 ( ! empty( $request['id'] ) ) { return new WP_Error( 'rest_post_exists', __( 'Cannot create existing post.' ), array( 'status' => 400 ) ); } $post_type = get_post_type_object( $this->post_type ); if ( ! empty( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( $post_type->cap->edit_others_posts ) ) { return new WP_Error( 'rest_cannot_edit_others', __( 'Sorry, you are not allowed to create posts as this user.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! empty( $request['sticky'] ) && ! current_user_can( $post_type->cap->edit_others_posts ) && ! current_user_can( $post_type->cap->publish_posts ) ) { return new WP_Error( 'rest_cannot_assign_sticky', __( 'Sorry, you are not allowed to make posts sticky.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! current_user_can( $post_type->cap->create_posts ) ) { return new WP_Error( 'rest_cannot_create', __( 'Sorry, you are not allowed to create posts as this user.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! $this->check_assign_terms_permission( $request ) ) { return new WP_Error( 'rest_cannot_assign_term', __( 'Sorry, you are not allowed to assign the provided terms.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Creates a single post. * * @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_post_exists', __( 'Cannot create existing post.' ), array( 'status' => 400 ) ); } $prepared_post = $this->prepare_item_for_database( $request ); if ( is_wp_error( $prepared_post ) ) { return $prepared_post; } $prepared_post->post_type = $this->post_type; $post_id = wp_insert_post( wp_slash( (array) $prepared_post ), true ); if ( is_wp_error( $post_id ) ) { if ( 'db_insert_error' === $post_id->get_error_code() ) { $post_id->add_data( array( 'status' => 500 ) ); } else { $post_id->add_data( array( 'status' => 400 ) ); } return $post_id; } $post = get_post( $post_id ); /** * Fires after a single post is created or updated via the REST API. * * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. * * @since 4.7.0 * * @param WP_Post $post Inserted or updated post object. * @param WP_REST_Request $request Request object. * @param bool $creating True when creating a post, false when updating. */ do_action( "rest_insert_{$this->post_type}", $post, $request, true ); $schema = $this->get_item_schema(); if ( ! empty( $schema['properties']['sticky'] ) ) { if ( ! empty( $request['sticky'] ) ) { stick_post( $post_id ); } else { unstick_post( $post_id ); } } if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) { $this->handle_featured_media( $request['featured_media'], $post_id ); } if ( ! empty( $schema['properties']['format'] ) && ! empty( $request['format'] ) ) { set_post_format( $post, $request['format'] ); } if ( ! empty( $schema['properties']['template'] ) && isset( $request['template'] ) ) { $this->handle_template( $request['template'], $post_id, true ); } $terms_update = $this->handle_terms( $post_id, $request ); if ( is_wp_error( $terms_update ) ) { return $terms_update; } if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { $meta_update = $this->meta->update_value( $request['meta'], $post_id ); if ( is_wp_error( $meta_update ) ) { return $meta_update; } } $post = get_post( $post_id ); $fields_update = $this->update_additional_fields_for_object( $post, $request ); if ( is_wp_error( $fields_update ) ) { return $fields_update; } $request->set_param( 'context', 'edit' ); /** * Fires after a single post is completely created or updated via the REST API. * * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. * * @since 5.0.0 * * @param WP_Post $post Inserted or updated post object. * @param WP_REST_Request $request Request object. * @param bool $creating True when creating a post, false when updating. */ do_action( "rest_after_insert_{$this->post_type}", $post, $request, true ); $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, $post_id ) ) ); return $response; } /** * Checks if a given request has access to update a post. * * @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 ) { $post = $this->get_post( $request['id'] ); if ( is_wp_error( $post ) ) { return $post; } $post_type = get_post_type_object( $this->post_type ); if ( $post && ! $this->check_update_permission( $post ) ) { return new WP_Error( 'rest_cannot_edit', __( 'Sorry, you are not allowed to edit this post.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! empty( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( $post_type->cap->edit_others_posts ) ) { return new WP_Error( 'rest_cannot_edit_others', __( 'Sorry, you are not allowed to update posts as this user.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! empty( $request['sticky'] ) && ! current_user_can( $post_type->cap->edit_others_posts ) && ! current_user_can( $post_type->cap->publish_posts ) ) { return new WP_Error( 'rest_cannot_assign_sticky', __( 'Sorry, you are not allowed to make posts sticky.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! $this->check_assign_terms_permission( $request ) ) { return new WP_Error( 'rest_cannot_assign_term', __( 'Sorry, you are not allowed to assign the provided terms.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Updates a single post. * * @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 ) { $valid_check = $this->get_post( $request['id'] ); if ( is_wp_error( $valid_check ) ) { return $valid_check; } $post = $this->prepare_item_for_database( $request ); if ( is_wp_error( $post ) ) { return $post; } // Convert the post object to an array, otherwise wp_update_post() will expect non-escaped input. $post_id = wp_update_post( wp_slash( (array) $post ), true ); if ( is_wp_error( $post_id ) ) { if ( 'db_update_error' === $post_id->get_error_code() ) { $post_id->add_data( array( 'status' => 500 ) ); } else { $post_id->add_data( array( 'status' => 400 ) ); } return $post_id; } $post = get_post( $post_id ); /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */ do_action( "rest_insert_{$this->post_type}", $post, $request, false ); $schema = $this->get_item_schema(); if ( ! empty( $schema['properties']['format'] ) && ! empty( $request['format'] ) ) { set_post_format( $post, $request['format'] ); } if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) { $this->handle_featured_media( $request['featured_media'], $post_id ); } if ( ! empty( $schema['properties']['sticky'] ) && isset( $request['sticky'] ) ) { if ( ! empty( $request['sticky'] ) ) { stick_post( $post_id ); } else { unstick_post( $post_id ); } } if ( ! empty( $schema['properties']['template'] ) && isset( $request['template'] ) ) { $this->handle_template( $request['template'], $post->ID ); } $terms_update = $this->handle_terms( $post->ID, $request ); if ( is_wp_error( $terms_update ) ) { return $terms_update; } if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { $meta_update = $this->meta->update_value( $request['meta'], $post->ID ); if ( is_wp_error( $meta_update ) ) { return $meta_update; } } $post = get_post( $post_id ); $fields_update = $this->update_additional_fields_for_object( $post, $request ); if ( is_wp_error( $fields_update ) ) { return $fields_update; } $request->set_param( 'context', 'edit' ); // Filter is fired in WP_REST_Attachments_Controller subclass. if ( 'attachment' === $this->post_type ) { $response = $this->prepare_item_for_response( $post, $request ); return rest_ensure_response( $response ); } /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */ do_action( "rest_after_insert_{$this->post_type}", $post, $request, false ); $response = $this->prepare_item_for_response( $post, $request ); return rest_ensure_response( $response ); } /** * Checks if a given request has access to delete a post. * * @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 ) { $post = $this->get_post( $request['id'] ); if ( is_wp_error( $post ) ) { return $post; } if ( $post && ! $this->check_delete_permission( $post ) ) { return new WP_Error( 'rest_cannot_delete', __( 'Sorry, you are not allowed to delete this post.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Deletes a single post. * * @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 ) { $post = $this->get_post( $request['id'] ); if ( is_wp_error( $post ) ) { return $post; } $id = $post->ID; $force = (bool) $request['force']; $supports_trash = ( EMPTY_TRASH_DAYS > 0 ); if ( 'attachment' === $post->post_type ) { $supports_trash = $supports_trash && MEDIA_TRASH; } /** * Filters whether a post is trashable. * * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. * * Pass false to disable Trash support for the post. * * @since 4.7.0 * * @param bool $supports_trash Whether the post type support trashing. * @param WP_Post $post The Post object being considered for trashing support. */ $supports_trash = apply_filters( "rest_{$this->post_type}_trashable", $supports_trash, $post ); if ( ! $this->check_delete_permission( $post ) ) { return new WP_Error( 'rest_user_cannot_delete_post', __( 'Sorry, you are not allowed to delete this post.' ), array( 'status' => rest_authorization_required_code() ) ); } $request->set_param( 'context', 'edit' ); // If we're forcing, then delete permanently. if ( $force ) { $previous = $this->prepare_item_for_response( $post, $request ); $result = wp_delete_post( $id, true ); $response = new WP_REST_Response(); $response->set_data( array( 'deleted' => true, 'previous' => $previous->get_data(), ) ); } else { // If we don't support trashing for this type, error out. if ( ! $supports_trash ) { return new WP_Error( 'rest_trash_not_supported', /* translators: %s: force=true */ sprintf( __( "The post does not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) ); } // Otherwise, only trash if we haven't already. if ( 'trash' === $post->post_status ) { return new WP_Error( 'rest_already_trashed', __( 'The post has already been deleted.' ), array( 'status' => 410 ) ); } // (Note that internally this falls through to `wp_delete_post()` // if the Trash is disabled.) $result = wp_trash_post( $id ); $post = get_post( $id ); $response = $this->prepare_item_for_response( $post, $request ); } if ( ! $result ) { return new WP_Error( 'rest_cannot_delete', __( 'The post cannot be deleted.' ), array( 'status' => 500 ) ); } /** * Fires immediately after a single post is deleted or trashed via the REST API. * * They dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. * * @since 4.7.0 * * @param WP_Post $post The deleted or trashed post. * @param WP_REST_Response $response The response data. * @param WP_REST_Request $request The request sent to the API. */ do_action( "rest_delete_{$this->post_type}", $post, $response, $request ); return $response; } /** * Determines the allowed query_vars for a get_items() response and prepares * them for WP_Query. * * @since 4.7.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 = array(); foreach ( $prepared_args as $key => $value ) { /** * Filters the query_vars used in get_items() for the constructed query. * * The dynamic portion of the hook name, `$key`, refers to the query_var key. * * @since 4.7.0 * * @param string $value The query_var value. */ $query_args[ $key ] = apply_filters( "rest_query_var-{$key}", $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } if ( 'post' !== $this->post_type || ! isset( $query_args['ignore_sticky_posts'] ) ) { $query_args['ignore_sticky_posts'] = true; } // Map to proper WP_Query orderby param. if ( isset( $query_args['orderby'] ) && isset( $request['orderby'] ) ) { $orderby_mappings = array( 'id' => 'ID', 'include' => 'post__in', 'slug' => 'post_name', 'include_slugs' => 'post_name__in', ); if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) { $query_args['orderby'] = $orderby_mappings[ $request['orderby'] ]; } } return $query_args; } /** * Checks the post_date_gmt or modified_gmt and prepare any post or * modified date for single post output. * * @since 4.7.0 * * @param string $date_gmt GMT publication time. * @param string|null $date Optional. Local publication time. Default null. * @return string|null ISO8601/RFC3339 formatted datetime. */ protected function prepare_date_response( $date_gmt, $date = null ) { // Use the date if passed. if ( isset( $date ) ) { return mysql_to_rfc3339( $date ); } // Return null if $date_gmt is empty/zeros. if ( '0000-00-00 00:00:00' === $date_gmt ) { return null; } // Return the formatted datetime. return mysql_to_rfc3339( $date_gmt ); } /** * Prepares a single post for create or update. * * @since 4.7.0 * * @param WP_REST_Request $request Request object. * @return stdClass|WP_Error Post object or WP_Error. */ protected function prepare_item_for_database( $request ) { $prepared_post = new stdClass(); // Post ID. if ( isset( $request['id'] ) ) { $existing_post = $this->get_post( $request['id'] ); if ( is_wp_error( $existing_post ) ) { return $existing_post; } $prepared_post->ID = $existing_post->ID; } $schema = $this->get_item_schema(); // Post title. if ( ! empty( $schema['properties']['title'] ) && isset( $request['title'] ) ) { if ( is_string( $request['title'] ) ) { $prepared_post->post_title = $request['title']; } elseif ( ! empty( $request['title']['raw'] ) ) { $prepared_post->post_title = $request['title']['raw']; } } // Post content. if ( ! empty( $schema['properties']['content'] ) && isset( $request['content'] ) ) { if ( is_string( $request['content'] ) ) { $prepared_post->post_content = $request['content']; } elseif ( isset( $request['content']['raw'] ) ) { $prepared_post->post_content = $request['content']['raw']; } } // Post excerpt. if ( ! empty( $schema['properties']['excerpt'] ) && isset( $request['excerpt'] ) ) { if ( is_string( $request['excerpt'] ) ) { $prepared_post->post_excerpt = $request['excerpt']; } elseif ( isset( $request['excerpt']['raw'] ) ) { $prepared_post->post_excerpt = $request['excerpt']['raw']; } } // Post type. if ( empty( $request['id'] ) ) { // Creating new post, use default type for the controller. $prepared_post->post_type = $this->post_type; } else { // Updating a post, use previous type. $prepared_post->post_type = get_post_type( $request['id'] ); } $post_type = get_post_type_object( $prepared_post->post_type ); // Post status. if ( ! empty( $schema['properties']['status'] ) && isset( $request['status'] ) ) { $status = $this->handle_status_param( $request['status'], $post_type ); if ( is_wp_error( $status ) ) { return $status; } $prepared_post->post_status = $status; } // Post date. if ( ! empty( $schema['properties']['date'] ) && ! empty( $request['date'] ) ) { $current_date = isset( $prepared_post->ID ) ? get_post( $prepared_post->ID )->post_date : false; $date_data = rest_get_date_with_gmt( $request['date'] ); if ( ! empty( $date_data ) && $current_date !== $date_data[0] ) { list( $prepared_post->post_date, $prepared_post->post_date_gmt ) = $date_data; $prepared_post->edit_date = true; } } elseif ( ! empty( $schema['properties']['date_gmt'] ) && ! empty( $request['date_gmt'] ) ) { $current_date = isset( $prepared_post->ID ) ? get_post( $prepared_post->ID )->post_date_gmt : false; $date_data = rest_get_date_with_gmt( $request['date_gmt'], true ); if ( ! empty( $date_data ) && $current_date !== $date_data[1] ) { list( $prepared_post->post_date, $prepared_post->post_date_gmt ) = $date_data; $prepared_post->edit_date = true; } } // Sending a null date or date_gmt value resets date and date_gmt to their // default values (`0000-00-00 00:00:00`). if ( ( ! empty( $schema['properties']['date_gmt'] ) && $request->has_param( 'date_gmt' ) && null === $request['date_gmt'] ) || ( ! empty( $schema['properties']['date'] ) && $request->has_param( 'date' ) && null === $request['date'] ) ) { $prepared_post->post_date_gmt = null; $prepared_post->post_date = null; } // Post slug. if ( ! empty( $schema['properties']['slug'] ) && isset( $request['slug'] ) ) { $prepared_post->post_name = $request['slug']; } // Author. if ( ! empty( $schema['properties']['author'] ) && ! empty( $request['author'] ) ) { $post_author = (int) $request['author']; if ( get_current_user_id() !== $post_author ) { $user_obj = get_userdata( $post_author ); if ( ! $user_obj ) { return new WP_Error( 'rest_invalid_author', __( 'Invalid author ID.' ), array( 'status' => 400 ) ); } } $prepared_post->post_author = $post_author; } // Post password. if ( ! empty( $schema['properties']['password'] ) && isset( $request['password'] ) ) { $prepared_post->post_password = $request['password']; if ( '' !== $request['password'] ) { if ( ! empty( $schema['properties']['sticky'] ) && ! empty( $request['sticky'] ) ) { return new WP_Error( 'rest_invalid_field', __( 'A post can not be sticky and have a password.' ), array( 'status' => 400 ) ); } if ( ! empty( $prepared_post->ID ) && is_sticky( $prepared_post->ID ) ) { return new WP_Error( 'rest_invalid_field', __( 'A sticky post can not be password protected.' ), array( 'status' => 400 ) ); } } } if ( ! empty( $schema['properties']['sticky'] ) && ! empty( $request['sticky'] ) ) { if ( ! empty( $prepared_post->ID ) && post_password_required( $prepared_post->ID ) ) { return new WP_Error( 'rest_invalid_field', __( 'A password protected post can not be set to sticky.' ), array( 'status' => 400 ) ); } } // Parent. if ( ! empty( $schema['properties']['parent'] ) && isset( $request['parent'] ) ) { if ( 0 === (int) $request['parent'] ) { $prepared_post->post_parent = 0; } else { $parent = get_post( (int) $request['parent'] ); if ( empty( $parent ) ) { return new WP_Error( 'rest_post_invalid_id', __( 'Invalid post parent ID.' ), array( 'status' => 400 ) ); } $prepared_post->post_parent = (int) $parent->ID; } } // Menu order. if ( ! empty( $schema['properties']['menu_order'] ) && isset( $request['menu_order'] ) ) { $prepared_post->menu_order = (int) $request['menu_order']; } // Comment status. if ( ! empty( $schema['properties']['comment_status'] ) && ! empty( $request['comment_status'] ) ) { $prepared_post->comment_status = $request['comment_status']; } // Ping status. if ( ! empty( $schema['properties']['ping_status'] ) && ! empty( $request['ping_status'] ) ) { $prepared_post->ping_status = $request['ping_status']; } if ( ! empty( $schema['properties']['template'] ) ) { // Force template to null so that it can be handled exclusively by the REST controller. $prepared_post->page_template = null; } /** * Filters a post before it is inserted via the REST API. * * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. * * @since 4.7.0 * * @param stdClass $prepared_post An object representing a single post prepared * for inserting or updating the database. * @param WP_REST_Request $request Request object. */ return apply_filters( "rest_pre_insert_{$this->post_type}", $prepared_post, $request ); } /** * Determines validity and normalizes the given status parameter. * * @since 4.7.0 * * @param string $post_status Post status. * @param WP_Post_Type $post_type Post type. * @return string|WP_Error Post status or WP_Error if lacking the proper permission. */ protected function handle_status_param( $post_status, $post_type ) { switch ( $post_status ) { case 'draft': case 'pending': break; case 'private': if ( ! current_user_can( $post_type->cap->publish_posts ) ) { return new WP_Error( 'rest_cannot_publish', __( 'Sorry, you are not allowed to create private posts in this post type.' ), array( 'status' => rest_authorization_required_code() ) ); } break; case 'publish': case 'future': if ( ! current_user_can( $post_type->cap->publish_posts ) ) { return new WP_Error( 'rest_cannot_publish', __( 'Sorry, you are not allowed to publish posts in this post type.' ), array( 'status' => rest_authorization_required_code() ) ); } break; default: if ( ! get_post_status_object( $post_status ) ) { $post_status = 'draft'; } break; } return $post_status; } /** * Determines the featured media based on a request param. * * @since 4.7.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 ) { $featured_media = (int) $featured_media; if ( $featured_media ) { $result = set_post_thumbnail( $post_id, $featured_media ); if ( $result ) { return true; } else { return new WP_Error( 'rest_invalid_featured_media', __( 'Invalid featured media ID.' ), array( 'status' => 400 ) ); } } else { return delete_post_thumbnail( $post_id ); } } /** * Check whether the template is valid for the given post. * * @since 4.9.0 * * @param string $template Page template filename. * @param WP_REST_Request $request Request. * @return bool|WP_Error True if template is still valid or if the same as existing value, or false if template not supported. */ public function check_template( $template, $request ) { if ( ! $template ) { return true; } if ( $request['id'] ) { $current_template = get_page_template_slug( $request['id'] ); } else { $current_template = ''; } // Always allow for updating a post to the same template, even if that template is no longer supported. if ( $template === $current_template ) { return true; } // If this is a create request, get_post() will return null and wp theme will fallback to the passed post type. $allowed_templates = wp_get_theme()->get_page_templates( get_post( $request['id'] ), $this->post_type ); if ( isset( $allowed_templates[ $template ] ) ) { return true; } return new WP_Error( 'rest_invalid_param', /* translators: 1: Parameter, 2: List of valid values. */ sprintf( __( '%1$s is not one of %2$s.' ), 'template', implode( ', ', array_keys( $allowed_templates ) ) ) ); } /** * Sets the template for a post. * * @since 4.7.0 * @since 4.9.0 Added the `$validate` parameter. * * @param string $template Page template filename. * @param integer $post_id Post ID. * @param bool $validate Whether to validate that the template selected is valid. */ public function handle_template( $template, $post_id, $validate = false ) { if ( $validate && ! array_key_exists( $template, wp_get_theme()->get_page_templates( get_post( $post_id ) ) ) ) { $template = ''; } update_post_meta( $post_id, '_wp_page_template', $template ); } /** * Updates the post's terms from a REST request. * * @since 4.7.0 * * @param int $post_id The post ID to update the terms form. * @param WP_REST_Request $request The request object with post and terms data. * @return null|WP_Error WP_Error on an error assigning any of the terms, otherwise null. */ protected function handle_terms( $post_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 ( ! isset( $request[ $base ] ) ) { continue; } $result = wp_set_object_terms( $post_id, $request[ $base ], $taxonomy->name ); if ( is_wp_error( $result ) ) { return $result; } } } /** * Checks whether current user can assign all terms sent with the current request. * * @since 4.7.0 * * @param WP_REST_Request $request The request object with post and terms data. * @return bool Whether the current user can assign the provided terms. */ protected function check_assign_terms_permission( $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 ( ! isset( $request[ $base ] ) ) { continue; } foreach ( $request[ $base ] as $term_id ) { // Invalid terms will be rejected later. if ( ! get_term( $term_id, $taxonomy->name ) ) { continue; } if ( ! current_user_can( 'assign_term', (int) $term_id ) ) { return false; } } } return true; } /** * Checks if a given post type can be viewed or managed. * * @since 4.7.0 * * @param WP_Post_Type|string $post_type Post type name or object. * @return bool Whether the post type is allowed in REST. */ protected function check_is_post_type_allowed( $post_type ) { if ( ! is_object( $post_type ) ) { $post_type = get_post_type_object( $post_type ); } if ( ! empty( $post_type ) && ! empty( $post_type->show_in_rest ) ) { return true; } return false; } /** * Checks if a post can be read. * * Correctly handles posts with the inherit status. * * @since 4.7.0 * * @param WP_Post $post Post object. * @return bool Whether the post can be read. */ public function check_read_permission( $post ) { $post_type = get_post_type_object( $post->post_type ); if ( ! $this->check_is_post_type_allowed( $post_type ) ) { return false; } // Is the post readable? if ( 'publish' === $post->post_status || current_user_can( 'read_post', $post->ID ) ) { return true; } $post_status_obj = get_post_status_object( $post->post_status ); if ( $post_status_obj && $post_status_obj->public ) { return true; } // Can we read the parent if we're inheriting? if ( 'inherit' === $post->post_status && $post->post_parent > 0 ) { $parent = get_post( $post->post_parent ); if ( $parent ) { return $this->check_read_permission( $parent ); } } /* * If there isn't a parent, but the status is set to inherit, assume * it's published (as per get_post_status()). */ if ( 'inherit' === $post->post_status ) { return true; } return false; } /** * Checks if a post can be edited. * * @since 4.7.0 * * @param WP_Post $post Post object. * @return bool Whether the post can be edited. */ protected function check_update_permission( $post ) { $post_type = get_post_type_object( $post->post_type ); if ( ! $this->check_is_post_type_allowed( $post_type ) ) { return false; } return current_user_can( 'edit_post', $post->ID ); } /** * Checks if a post can be created. * * @since 4.7.0 * * @param WP_Post $post Post object. * @return bool Whether the post can be created. */ protected function check_create_permission( $post ) { $post_type = get_post_type_object( $post->post_type ); if ( ! $this->check_is_post_type_allowed( $post_type ) ) { return false; } return current_user_can( $post_type->cap->create_posts ); } /** * Checks if a post can be deleted. * * @since 4.7.0 * * @param WP_Post $post Post object. * @return bool Whether the post can be deleted. */ protected function check_delete_permission( $post ) { $post_type = get_post_type_object( $post->post_type ); if ( ! $this->check_is_post_type_allowed( $post_type ) ) { return false; } return current_user_can( 'delete_post', $post->ID ); } /** * Prepares a single post output for response. * * @since 4.7.0 * * @param WP_Post $post Post object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $post, $request ) { $GLOBALS['post'] = $post; setup_postdata( $post ); $fields = $this->get_fields_for_response( $request ); // Base fields for every post. $data = array(); if ( rest_is_field_included( 'id', $fields ) ) { $data['id'] = $post->ID; } if ( rest_is_field_included( 'date', $fields ) ) { $data['date'] = $this->prepare_date_response( $post->post_date_gmt, $post->post_date ); } if ( rest_is_field_included( 'date_gmt', $fields ) ) { /* * For drafts, `post_date_gmt` may not be set, indicating that the date * of the draft should be updated each time it is saved (see #38883). * In this case, shim the value based on the `post_date` field * with the site's timezone offset applied. */ if ( '0000-00-00 00:00:00' === $post->post_date_gmt ) { $post_date_gmt = get_gmt_from_date( $post->post_date ); } else { $post_date_gmt = $post->post_date_gmt; } $data['date_gmt'] = $this->prepare_date_response( $post_date_gmt ); } if ( rest_is_field_included( 'guid', $fields ) ) { $data['guid'] = array( /** This filter is documented in wp-includes/post-template.php */ 'rendered' => apply_filters( 'get_the_guid', $post->guid, $post->ID ), 'raw' => $post->guid, ); } if ( rest_is_field_included( 'modified', $fields ) ) { $data['modified'] = $this->prepare_date_response( $post->post_modified_gmt, $post->post_modified ); } if ( rest_is_field_included( 'modified_gmt', $fields ) ) { /* * For drafts, `post_modified_gmt` may not be set (see `post_date_gmt` comments * above). In this case, shim the value based on the `post_modified` field * with the site's timezone offset applied. */ if ( '0000-00-00 00:00:00' === $post->post_modified_gmt ) { $post_modified_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - ( get_option( 'gmt_offset' ) * 3600 ) ); } else { $post_modified_gmt = $post->post_modified_gmt; } $data['modified_gmt'] = $this->prepare_date_response( $post_modified_gmt ); } if ( rest_is_field_included( 'password', $fields ) ) { $data['password'] = $post->post_password; } if ( rest_is_field_included( 'slug', $fields ) ) { $data['slug'] = $post->post_name; } if ( rest_is_field_included( 'status', $fields ) ) { $data['status'] = $post->post_status; } if ( rest_is_field_included( 'type', $fields ) ) { $data['type'] = $post->post_type; } if ( rest_is_field_included( 'link', $fields ) ) { $data['link'] = get_permalink( $post->ID ); } if ( rest_is_field_included( 'title', $fields ) ) { $data['title'] = array(); } if ( rest_is_field_included( 'title.raw', $fields ) ) { $data['title']['raw'] = $post->post_title; } if ( rest_is_field_included( 'title.rendered', $fields ) ) { add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); $data['title']['rendered'] = get_the_title( $post->ID ); remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); } $has_password_filter = false; if ( $this->can_access_password_content( $post, $request ) ) { $this->password_check_passed[ $post->ID ] = true; // Allow access to the post, permissions already checked before. add_filter( 'post_password_required', array( $this, 'check_password_required' ), 10, 2 ); $has_password_filter = true; } if ( rest_is_field_included( 'content', $fields ) ) { $data['content'] = array(); } if ( rest_is_field_included( 'content.raw', $fields ) ) { $data['content']['raw'] = $post->post_content; } if ( rest_is_field_included( 'content.rendered', $fields ) ) { /** This filter is documented in wp-includes/post-template.php */ $data['content']['rendered'] = post_password_required( $post ) ? '' : apply_filters( 'the_content', $post->post_content ); } if ( rest_is_field_included( 'content.protected', $fields ) ) { $data['content']['protected'] = (bool) $post->post_password; } if ( rest_is_field_included( 'content.block_version', $fields ) ) { $data['content']['block_version'] = block_version( $post->post_content ); } if ( rest_is_field_included( 'excerpt', $fields ) ) { /** This filter is documented in wp-includes/post-template.php */ $excerpt = apply_filters( 'get_the_excerpt', $post->post_excerpt, $post ); /** This filter is documented in wp-includes/post-template.php */ $excerpt = apply_filters( 'the_excerpt', $excerpt ); $data['excerpt'] = array( 'raw' => $post->post_excerpt, 'rendered' => post_password_required( $post ) ? '' : $excerpt, 'protected' => (bool) $post->post_password, ); } if ( $has_password_filter ) { // Reset filter. remove_filter( 'post_password_required', array( $this, 'check_password_required' ) ); } if ( rest_is_field_included( 'author', $fields ) ) { $data['author'] = (int) $post->post_author; } if ( rest_is_field_included( 'featured_media', $fields ) ) { $data['featured_media'] = (int) get_post_thumbnail_id( $post->ID ); } if ( rest_is_field_included( 'parent', $fields ) ) { $data['parent'] = (int) $post->post_parent; } if ( rest_is_field_included( 'menu_order', $fields ) ) { $data['menu_order'] = (int) $post->menu_order; } if ( rest_is_field_included( 'comment_status', $fields ) ) { $data['comment_status'] = $post->comment_status; } if ( rest_is_field_included( 'ping_status', $fields ) ) { $data['ping_status'] = $post->ping_status; } if ( rest_is_field_included( 'sticky', $fields ) ) { $data['sticky'] = is_sticky( $post->ID ); } if ( rest_is_field_included( 'template', $fields ) ) { $template = get_page_template_slug( $post->ID ); if ( $template ) { $data['template'] = $template; } else { $data['template'] = ''; } } if ( rest_is_field_included( 'format', $fields ) ) { $data['format'] = get_post_format( $post->ID ); // Fill in blank post format. if ( empty( $data['format'] ) ) { $data['format'] = 'standard'; } } if ( rest_is_field_included( 'meta', $fields ) ) { $data['meta'] = $this->meta->get_value( $post->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( $post, $taxonomy->name ); $data[ $base ] = $terms ? array_values( wp_list_pluck( $terms, 'term_id' ) ) : array(); } } $post_type_obj = get_post_type_object( $post->post_type ); if ( is_post_type_viewable( $post_type_obj ) && $post_type_obj->public ) { $permalink_template_requested = rest_is_field_included( 'permalink_template', $fields ); $generated_slug_requested = rest_is_field_included( 'generated_slug', $fields ); if ( $permalink_template_requested || $generated_slug_requested ) { if ( ! function_exists( 'get_sample_permalink' ) ) { require_once ABSPATH . 'wp-admin/includes/post.php'; } $sample_permalink = get_sample_permalink( $post->ID, $post->post_title, '' ); if ( $permalink_template_requested ) { $data['permalink_template'] = $sample_permalink[0]; } if ( $generated_slug_requested ) { $data['generated_slug'] = $sample_permalink[1]; } } } $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 ); $links = $this->prepare_links( $post ); $response->add_links( $links ); if ( ! empty( $links['self']['href'] ) ) { $actions = $this->get_available_actions( $post, $request ); $self = $links['self']['href']; foreach ( $actions as $rel ) { $response->add_link( $rel, $self ); } } /** * Filters the post data for a response. * * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. * * @since 4.7.0 * * @param WP_REST_Response $response The response object. * @param WP_Post $post Post object. * @param WP_REST_Request $request Request object. */ return apply_filters( "rest_prepare_{$this->post_type}", $response, $post, $request ); } /** * Overwrites the default protected title format. * * By default, WordPress will show password protected posts with a title of * "Protected: %s", as the REST API communicates the protected status of a post * in a machine readable format, we remove the "Protected: " prefix. * * @since 4.7.0 * * @return string Protected title format. */ public function protected_title_format() { return '%s'; } /** * Prepares links for the request. * * @since 4.7.0 * * @param WP_Post $post Post object. * @return array Links for the given post. */ protected function prepare_links( $post ) { $base = sprintf( '%s/%s', $this->namespace, $this->rest_base ); // Entity meta. $links = array( 'self' => array( 'href' => rest_url( trailingslashit( $base ) . $post->ID ), ), 'collection' => array( 'href' => rest_url( $base ), ), 'about' => array( 'href' => rest_url( 'wp/v2/types/' . $this->post_type ), ), ); if ( ( in_array( $post->post_type, array( 'post', 'page' ), true ) || post_type_supports( $post->post_type, 'author' ) ) && ! empty( $post->post_author ) ) { $links['author'] = array( 'href' => rest_url( 'wp/v2/users/' . $post->post_author ), 'embeddable' => true, ); } if ( in_array( $post->post_type, array( 'post', 'page' ), true ) || post_type_supports( $post->post_type, 'comments' ) ) { $replies_url = rest_url( 'wp/v2/comments' ); $replies_url = add_query_arg( 'post', $post->ID, $replies_url ); $links['replies'] = array( 'href' => $replies_url, 'embeddable' => true, ); } if ( in_array( $post->post_type, array( 'post', 'page' ), true ) || post_type_supports( $post->post_type, 'revisions' ) ) { $revisions = wp_get_post_revisions( $post->ID, array( 'fields' => 'ids' ) ); $revisions_count = count( $revisions ); $links['version-history'] = array( 'href' => rest_url( trailingslashit( $base ) . $post->ID . '/revisions' ), 'count' => $revisions_count, ); if ( $revisions_count > 0 ) { $last_revision = array_shift( $revisions ); $links['predecessor-version'] = array( 'href' => rest_url( trailingslashit( $base ) . $post->ID . '/revisions/' . $last_revision ), 'id' => $last_revision, ); } } $post_type_obj = get_post_type_object( $post->post_type ); if ( $post_type_obj->hierarchical && ! empty( $post->post_parent ) ) { $links['up'] = array( 'href' => rest_url( trailingslashit( $base ) . (int) $post->post_parent ), 'embeddable' => true, ); } // If we have a featured media, add that. $featured_media = get_post_thumbnail_id( $post->ID ); if ( $featured_media ) { $image_url = rest_url( 'wp/v2/media/' . $featured_media ); $links['https://api.w.org/featuredmedia'] = array( 'href' => $image_url, 'embeddable' => true, ); } if ( ! in_array( $post->post_type, array( 'attachment', 'nav_menu_item', 'revision' ), true ) ) { $attachments_url = rest_url( 'wp/v2/media' ); $attachments_url = add_query_arg( 'parent', $post->ID, $attachments_url ); $links['https://api.w.org/attachment'] = array( 'href' => $attachments_url, ); } $taxonomies = get_object_taxonomies( $post->post_type ); if ( ! empty( $taxonomies ) ) { $links['https://api.w.org/term'] = array(); foreach ( $taxonomies as $tax ) { $taxonomy_obj = get_taxonomy( $tax ); // Skip taxonomies that are not public. if ( empty( $taxonomy_obj->show_in_rest ) ) { continue; } $tax_base = ! empty( $taxonomy_obj->rest_base ) ? $taxonomy_obj->rest_base : $tax; $terms_url = add_query_arg( 'post', $post->ID, rest_url( 'wp/v2/' . $tax_base ) ); $links['https://api.w.org/term'][] = array( 'href' => $terms_url, 'taxonomy' => $tax, 'embeddable' => true, ); } } return $links; } /** * Get the link relations available for the post and current user. * * @since 4.9.8 * * @param WP_Post $post Post object. * @param WP_REST_Request $request Request object. * @return array List of link relations. */ protected function get_available_actions( $post, $request ) { if ( 'edit' !== $request['context'] ) { return array(); } $rels = array(); $post_type = get_post_type_object( $post->post_type ); if ( 'attachment' !== $this->post_type && current_user_can( $post_type->cap->publish_posts ) ) { $rels[] = 'https://api.w.org/action-publish'; } if ( current_user_can( 'unfiltered_html' ) ) { $rels[] = 'https://api.w.org/action-unfiltered-html'; } if ( 'post' === $post_type->name ) { if ( current_user_can( $post_type->cap->edit_others_posts ) && current_user_can( $post_type->cap->publish_posts ) ) { $rels[] = 'https://api.w.org/action-sticky'; } } if ( post_type_supports( $post_type->name, 'author' ) ) { if ( current_user_can( $post_type->cap->edit_others_posts ) ) { $rels[] = 'https://api.w.org/action-assign-author'; } } $taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) ); foreach ( $taxonomies as $tax ) { $tax_base = ! empty( $tax->rest_base ) ? $tax->rest_base : $tax->name; $create_cap = is_taxonomy_hierarchical( $tax->name ) ? $tax->cap->edit_terms : $tax->cap->assign_terms; if ( current_user_can( $create_cap ) ) { $rels[] = 'https://api.w.org/action-create-' . $tax_base; } if ( current_user_can( $tax->cap->assign_terms ) ) { $rels[] = 'https://api.w.org/action-assign-' . $tax_base; } } return $rels; } /** * Retrieves the post'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' => $this->post_type, 'type' => 'object', // Base properties for every Post. 'properties' => array( 'date' => array( 'description' => __( "The date the object was published, in the site's timezone." ), 'type' => array( 'string', 'null' ), 'format' => 'date-time', 'context' => array( 'view', 'edit', 'embed' ), ), 'date_gmt' => array( 'description' => __( 'The date the object was published, as GMT.' ), 'type' => array( 'string', 'null' ), 'format' => 'date-time', 'context' => array( 'view', 'edit' ), ), 'guid' => array( 'description' => __( 'The globally unique identifier for the object.' ), 'type' => 'object', 'context' => array( 'view', 'edit' ), 'readonly' => true, 'properties' => array( 'raw' => array( 'description' => __( 'GUID for the object, as it exists in the database.' ), 'type' => 'string', 'context' => array( 'edit' ), 'readonly' => true, ), 'rendered' => array( 'description' => __( 'GUID for the object, transformed for display.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), ), ), 'id' => array( 'description' => __( 'Unique identifier for the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'link' => array( 'description' => __( 'URL to the object.' ), 'type' => 'string', 'format' => 'uri', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'modified' => array( 'description' => __( "The date the object was last modified, in the site's timezone." ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'modified_gmt' => array( 'description' => __( 'The date the object was last modified, as GMT.' ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'slug' => array( 'description' => __( 'An alphanumeric identifier for the object unique to its type.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'arg_options' => array( 'sanitize_callback' => array( $this, 'sanitize_slug' ), ), ), 'status' => array( 'description' => __( 'A named status for the object.' ), 'type' => 'string', 'enum' => array_keys( get_post_stati( array( 'internal' => false ) ) ), 'context' => array( 'view', 'edit' ), ), 'type' => array( 'description' => __( 'Type of Post for the object.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'password' => array( 'description' => __( 'A password to protect access to the content and excerpt.' ), 'type' => 'string', 'context' => array( 'edit' ), ), ), ); $post_type_obj = get_post_type_object( $this->post_type ); if ( is_post_type_viewable( $post_type_obj ) && $post_type_obj->public ) { $schema['properties']['permalink_template'] = array( 'description' => __( 'Permalink template for the object.' ), 'type' => 'string', 'context' => array( 'edit' ), 'readonly' => true, ); $schema['properties']['generated_slug'] = array( 'description' => __( 'Slug automatically generated from the object title.' ), 'type' => 'string', 'context' => array( 'edit' ), 'readonly' => true, ); } if ( $post_type_obj->hierarchical ) { $schema['properties']['parent'] = array( 'description' => __( 'The ID for the parent of the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit' ), ); } $post_type_attributes = array( 'title', 'editor', 'author', 'excerpt', 'thumbnail', 'comments', 'revisions', 'page-attributes', 'post-formats', 'custom-fields', ); $fixed_schemas = array( 'post' => array( 'title', 'editor', 'author', 'excerpt', 'thumbnail', 'comments', 'revisions', 'post-formats', 'custom-fields', ), 'page' => array( 'title', 'editor', 'author', 'excerpt', 'thumbnail', 'comments', 'revisions', 'page-attributes', 'custom-fields', ), 'attachment' => array( 'title', 'author', 'comments', 'revisions', 'custom-fields', ), ); foreach ( $post_type_attributes as $attribute ) { if ( isset( $fixed_schemas[ $this->post_type ] ) && ! in_array( $attribute, $fixed_schemas[ $this->post_type ], true ) ) { continue; } elseif ( ! isset( $fixed_schemas[ $this->post_type ] ) && ! post_type_supports( $this->post_type, $attribute ) ) { continue; } switch ( $attribute ) { case 'title': $schema['properties']['title'] = array( 'description' => __( 'The title for the object.' ), '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' => __( '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, ), ), ); break; case 'editor': $schema['properties']['content'] = array( 'description' => __( 'The content for the object.' ), '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' => __( 'Content for the object, as it exists in the database.' ), 'type' => 'string', 'context' => array( 'edit' ), ), 'rendered' => array( 'description' => __( 'HTML content for the object, transformed for display.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'block_version' => array( 'description' => __( 'Version of the content block format used by the object.' ), 'type' => 'integer', 'context' => array( 'edit' ), 'readonly' => true, ), 'protected' => array( 'description' => __( 'Whether the content is protected with a password.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), ), ); break; case 'author': $schema['properties']['author'] = array( 'description' => __( 'The ID for the author of the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), ); break; case 'excerpt': $schema['properties']['excerpt'] = array( 'description' => __( 'The excerpt for the object.' ), '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' => __( 'Excerpt for the object, as it exists in the database.' ), 'type' => 'string', 'context' => array( 'edit' ), ), 'rendered' => array( 'description' => __( 'HTML excerpt for the object, transformed for display.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'protected' => array( 'description' => __( 'Whether the excerpt is protected with a password.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), ), ); break; case 'thumbnail': $schema['properties']['featured_media'] = array( 'description' => __( 'The ID of the featured media for the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), ); break; case 'comments': $schema['properties']['comment_status'] = array( 'description' => __( 'Whether or not comments are open on the object.' ), 'type' => 'string', 'enum' => array( 'open', 'closed' ), 'context' => array( 'view', 'edit' ), ); $schema['properties']['ping_status'] = array( 'description' => __( 'Whether or not the object can be pinged.' ), 'type' => 'string', 'enum' => array( 'open', 'closed' ), 'context' => array( 'view', 'edit' ), ); break; case 'page-attributes': $schema['properties']['menu_order'] = array( 'description' => __( 'The order of the object in relation to other object of its type.' ), 'type' => 'integer', 'context' => array( 'view', 'edit' ), ); break; case 'post-formats': // Get the native post formats and remove the array keys. $formats = array_values( get_post_format_slugs() ); $schema['properties']['format'] = array( 'description' => __( 'The format for the object.' ), 'type' => 'string', 'enum' => $formats, 'context' => array( 'view', 'edit' ), ); break; case 'custom-fields': $schema['properties']['meta'] = $this->meta->get_field_schema(); break; } } if ( 'post' === $this->post_type ) { $schema['properties']['sticky'] = array( 'description' => __( 'Whether or not the object should be treated as sticky.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit' ), ); } $schema['properties']['template'] = array( 'description' => __( 'The theme file to use to display the object.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), 'arg_options' => array( 'validate_callback' => array( $this, 'check_template' ), ), ); $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 ( array_key_exists( $base, $schema['properties'] ) ) { $taxonomy_field_name_with_conflict = ! empty( $taxonomy->rest_base ) ? 'rest_base' : 'name'; _doing_it_wrong( 'register_taxonomy', sprintf( /* translators: 1. The taxonomy name, 2. The property name, either 'rest_base' or 'name', 3. The conflicting value. */ __( 'The "%1$s" taxonomy "%2$s" property (%3$s) conflicts with an existing property on the REST API Posts Controller. Specify a custom "rest_base" when registering the taxonomy to avoid this error.' ), $taxonomy->name, $taxonomy_field_name_with_conflict, $base ), '5.4.0' ); } $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' ), ); } $schema_links = $this->get_schema_links(); if ( $schema_links ) { $schema['links'] = $schema_links; } // Take a snapshot of which fields are in the schema pre-filtering. $schema_fields = array_keys( $schema['properties'] ); /** * Filter the post's schema. * * The dynamic portion of the filter, `$this->post_type`, refers to the * post type slug for the controller. * * @since 5.4.0 * * @param array $schema Item schema data. */ $schema = apply_filters( "rest_{$this->post_type}_item_schema", $schema ); // Emit a _doing_it_wrong warning if user tries to add new properties using this filter. $new_fields = array_diff( array_keys( $schema['properties'] ), $schema_fields ); if ( count( $new_fields ) > 0 ) { _doing_it_wrong( __METHOD__, sprintf( /* translators: %s: register_rest_field */ __( 'Please use %s to add new schema properties.' ), 'register_rest_field' ), '5.4.0' ); } $this->schema = $schema; return $this->add_additional_fields_schema( $this->schema ); } /** * Retrieve Link Description Objects that should be added to the Schema for the posts collection. * * @since 4.9.8 * * @return array */ protected function get_schema_links() { $href = rest_url( "{$this->namespace}/{$this->rest_base}/{id}" ); $links = array(); if ( 'attachment' !== $this->post_type ) { $links[] = array( 'rel' => 'https://api.w.org/action-publish', 'title' => __( 'The current user can publish this post.' ), 'href' => $href, 'targetSchema' => array( 'type' => 'object', 'properties' => array( 'status' => array( 'type' => 'string', 'enum' => array( 'publish', 'future' ), ), ), ), ); } $links[] = array( 'rel' => 'https://api.w.org/action-unfiltered-html', 'title' => __( 'The current user can post unfiltered HTML markup and JavaScript.' ), 'href' => $href, 'targetSchema' => array( 'type' => 'object', 'properties' => array( 'content' => array( 'raw' => array( 'type' => 'string', ), ), ), ), ); if ( 'post' === $this->post_type ) { $links[] = array( 'rel' => 'https://api.w.org/action-sticky', 'title' => __( 'The current user can sticky this post.' ), 'href' => $href, 'targetSchema' => array( 'type' => 'object', 'properties' => array( 'sticky' => array( 'type' => 'boolean', ), ), ), ); } if ( post_type_supports( $this->post_type, 'author' ) ) { $links[] = array( 'rel' => 'https://api.w.org/action-assign-author', 'title' => __( 'The current user can change the author on this post.' ), 'href' => $href, 'targetSchema' => array( 'type' => 'object', 'properties' => array( 'author' => array( 'type' => 'integer', ), ), ), ); } $taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) ); foreach ( $taxonomies as $tax ) { $tax_base = ! empty( $tax->rest_base ) ? $tax->rest_base : $tax->name; /* translators: %s: Taxonomy name. */ $assign_title = sprintf( __( 'The current user can assign terms in the %s taxonomy.' ), $tax->name ); /* translators: %s: Taxonomy name. */ $create_title = sprintf( __( 'The current user can create terms in the %s taxonomy.' ), $tax->name ); $links[] = array( 'rel' => 'https://api.w.org/action-assign-' . $tax_base, 'title' => $assign_title, 'href' => $href, 'targetSchema' => array( 'type' => 'object', 'properties' => array( $tax_base => array( 'type' => 'array', 'items' => array( 'type' => 'integer', ), ), ), ), ); $links[] = array( 'rel' => 'https://api.w.org/action-create-' . $tax_base, 'title' => $create_title, 'href' => $href, 'targetSchema' => array( 'type' => 'object', 'properties' => array( $tax_base => array( 'type' => 'array', 'items' => array( 'type' => 'integer', ), ), ), ), ); } return $links; } /** * Retrieves the query params for the posts collection. * * @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['after'] = array( 'description' => __( 'Limit response to posts published after a given ISO8601 compliant date.' ), 'type' => 'string', 'format' => 'date-time', ); if ( post_type_supports( $this->post_type, 'author' ) ) { $query_params['author'] = array( 'description' => __( 'Limit result set to posts assigned to specific authors.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), 'default' => array(), ); $query_params['author_exclude'] = array( 'description' => __( 'Ensure result set excludes posts assigned to specific authors.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), 'default' => array(), ); } $query_params['before'] = array( 'description' => __( 'Limit response to posts published before a given ISO8601 compliant date.' ), 'type' => 'string', 'format' => 'date-time', ); $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(), ); if ( 'page' === $this->post_type || post_type_supports( $this->post_type, 'page-attributes' ) ) { $query_params['menu_order'] = array( 'description' => __( 'Limit result set to posts with a specific menu_order value.' ), 'type' => 'integer', ); } $query_params['offset'] = array( 'description' => __( 'Offset the result set by a specific number of items.' ), 'type' => 'integer', ); $query_params['order'] = array( 'description' => __( 'Order sort attribute ascending or descending.' ), 'type' => 'string', 'default' => 'desc', 'enum' => array( 'asc', 'desc' ), ); $query_params['orderby'] = array( 'description' => __( 'Sort collection by object attribute.' ), 'type' => 'string', 'default' => 'date', 'enum' => array( 'author', 'date', 'id', 'include', 'modified', 'parent', 'relevance', 'slug', 'include_slugs', 'title', ), ); if ( 'page' === $this->post_type || post_type_supports( $this->post_type, 'page-attributes' ) ) { $query_params['orderby']['enum'][] = 'menu_order'; } $post_type = get_post_type_object( $this->post_type ); if ( $post_type->hierarchical || 'attachment' === $this->post_type ) { $query_params['parent'] = array( 'description' => __( 'Limit result set to items with particular parent IDs.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), 'default' => array(), ); $query_params['parent_exclude'] = array( 'description' => __( 'Limit result set to all items except those of a particular parent ID.' ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), 'default' => array(), ); } $query_params['slug'] = array( 'description' => __( 'Limit result set to posts with one or more specific slugs.' ), 'type' => 'array', 'items' => array( 'type' => 'string', ), 'sanitize_callback' => 'wp_parse_slug_list', ); $query_params['status'] = array( 'default' => 'publish', 'description' => __( 'Limit result set to posts assigned one or more statuses.' ), 'type' => 'array', 'items' => array( 'enum' => array_merge( array_keys( get_post_stati() ), array( 'any' ) ), 'type' => 'string', ), 'sanitize_callback' => array( $this, 'sanitize_post_statuses' ), ); $taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) ); if ( ! empty( $taxonomies ) ) { $query_params['tax_relation'] = array( 'description' => __( 'Limit result set based on relationship between multiple taxonomies.' ), 'type' => 'string', 'enum' => array( 'AND', 'OR' ), ); } foreach ( $taxonomies as $taxonomy ) { $base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name; $query_params[ $base ] = array( /* translators: %s: Taxonomy name. */ 'description' => sprintf( __( 'Limit result set to all items that have the specified term assigned in the %s taxonomy.' ), $base ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), 'default' => array(), ); $query_params[ $base . '_exclude' ] = array( /* translators: %s: Taxonomy name. */ 'description' => sprintf( __( 'Limit result set to all items except those that have the specified term assigned in the %s taxonomy.' ), $base ), 'type' => 'array', 'items' => array( 'type' => 'integer', ), 'default' => array(), ); } if ( 'post' === $this->post_type ) { $query_params['sticky'] = array( 'description' => __( 'Limit result set to items that are sticky.' ), 'type' => 'boolean', ); } /** * Filter collection parameters for the posts controller. * * The dynamic part of the filter `$this->post_type` refers to the post * type slug for the controller. * * This filter registers the collection parameter, but does not map the * collection parameter to an internal WP_Query parameter. Use the * `rest_{$this->post_type}_query` filter to set WP_Query parameters. * * @since 4.7.0 * * @param array $query_params JSON Schema-formatted collection parameters. * @param WP_Post_Type $post_type Post type object. */ return apply_filters( "rest_{$this->post_type}_collection_params", $query_params, $post_type ); } /** * Sanitizes and validates the list of post statuses, including whether the * user can query private statuses. * * @since 4.7.0 * * @param string|array $statuses One or more post statuses. * @param WP_REST_Request $request Full details about the request. * @param string $parameter Additional parameter to pass to validation. * @return array|WP_Error A list of valid statuses, otherwise WP_Error object. */ public function sanitize_post_statuses( $statuses, $request, $parameter ) { $statuses = wp_parse_slug_list( $statuses ); // The default status is different in WP_REST_Attachments_Controller. $attributes = $request->get_attributes(); $default_status = $attributes['args']['status']['default']; foreach ( $statuses as $status ) { if ( $status === $default_status ) { continue; } $post_type_obj = get_post_type_object( $this->post_type ); if ( current_user_can( $post_type_obj->cap->edit_posts ) || 'private' === $status && current_user_can( $post_type_obj->cap->read_private_posts ) ) { $result = rest_validate_request_arg( $status, $request, $parameter ); if ( is_wp_error( $result ) ) { return $result; } } else { return new WP_Error( 'rest_forbidden_status', __( 'Status is forbidden.' ), array( 'status' => rest_authorization_required_code() ) ); } } return $statuses; } } endpoints/class-wp-rest-revisions-controller.php 0000644 00000057716 15213254037 0016206 0 ustar 00 <?php /** * REST API: WP_REST_Revisions_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class used to access revisions via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Revisions_Controller extends WP_REST_Controller { /** * Parent post type. * * @since 4.7.0 * @var string */ private $parent_post_type; /** * Parent controller. * * @since 4.7.0 * @var WP_REST_Controller */ private $parent_controller; /** * The base of the parent controller's route. * * @since 4.7.0 * @var string */ private $parent_base; /** * Constructor. * * @since 4.7.0 * * @param string $parent_post_type Post type of the parent. */ public function __construct( $parent_post_type ) { $this->parent_post_type = $parent_post_type; $this->namespace = 'wp/v2'; $this->rest_base = 'revisions'; $post_type_object = get_post_type_object( $parent_post_type ); $this->parent_base = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name; $this->parent_controller = $post_type_object->get_rest_controller(); if ( ! $this->parent_controller ) { $this->parent_controller = new WP_REST_Posts_Controller( $parent_post_type ); } } /** * Registers the routes for revisions based on post types supporting revisions. * * @since 4.7.0 * * @see register_rest_route() */ public function register_routes() { register_rest_route( $this->namespace, '/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base, array( 'args' => array( 'parent' => array( 'description' => __( 'The ID for the parent of the object.' ), '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(), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->parent_base . '/(?P<parent>[\d]+)/' . $this->rest_base . '/(?P<id>[\d]+)', array( 'args' => array( 'parent' => array( 'description' => __( 'The ID for the parent of the object.' ), 'type' => 'integer', ), 'id' => array( 'description' => __( 'Unique identifier for the object.' ), '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::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 revisions do not support trashing.' ), ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Get the parent post, if the ID is valid. * * @since 4.7.2 * * @param int $parent Supplied ID. * @return WP_Post|WP_Error Post object if ID is valid, WP_Error otherwise. */ protected function get_parent( $parent ) { $error = new WP_Error( 'rest_post_invalid_parent', __( 'Invalid post parent ID.' ), array( 'status' => 404 ) ); if ( (int) $parent <= 0 ) { return $error; } $parent = get_post( (int) $parent ); if ( empty( $parent ) || empty( $parent->ID ) || $this->parent_post_type !== $parent->post_type ) { return $error; } return $parent; } /** * Checks if a given request has access to get revisions. * * @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, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { $parent = $this->get_parent( $request['parent'] ); 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 revisions of this post.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Get the revision, if the ID is valid. * * @since 4.7.2 * * @param int $id Supplied ID. * @return WP_Post|WP_Error Revision post object if ID is valid, WP_Error otherwise. */ protected function get_revision( $id ) { $error = new WP_Error( 'rest_post_invalid_id', __( 'Invalid revision ID.' ), array( 'status' => 404 ) ); if ( (int) $id <= 0 ) { return $error; } $revision = get_post( (int) $id ); if ( empty( $revision ) || empty( $revision->ID ) || 'revision' !== $revision->post_type ) { return $error; } return $revision; } /** * Gets a collection of revisions. * * @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_items( $request ) { $parent = $this->get_parent( $request['parent'] ); if ( is_wp_error( $parent ) ) { return $parent; } // Ensure a search string is set in case the orderby is set to 'relevance'. if ( ! empty( $request['orderby'] ) && 'relevance' === $request['orderby'] && empty( $request['search'] ) ) { return new WP_Error( 'rest_no_search_term_defined', __( 'You need to define a search term to order by relevance.' ), array( 'status' => 400 ) ); } // Ensure an include parameter is set in case the orderby is set to 'include'. if ( ! empty( $request['orderby'] ) && 'include' === $request['orderby'] && empty( $request['include'] ) ) { return new WP_Error( 'rest_orderby_include_missing_include', __( 'You need to define an include parameter to order by include.' ), array( 'status' => 400 ) ); } if ( wp_revisions_enabled( $parent ) ) { $registered = $this->get_collection_params(); $args = array( 'post_parent' => $parent->ID, 'post_type' => 'revision', 'post_status' => 'inherit', 'posts_per_page' => -1, 'orderby' => 'date ID', 'order' => 'DESC', 'suppress_filters' => true, ); $parameter_mappings = array( 'exclude' => 'post__not_in', 'include' => 'post__in', 'offset' => 'offset', 'order' => 'order', 'orderby' => 'orderby', 'page' => 'paged', 'per_page' => 'posts_per_page', 'search' => 's', ); foreach ( $parameter_mappings as $api_param => $wp_param ) { if ( isset( $registered[ $api_param ], $request[ $api_param ] ) ) { $args[ $wp_param ] = $request[ $api_param ]; } } // For backward-compatibility, 'date' needs to resolve to 'date ID'. if ( isset( $args['orderby'] ) && 'date' === $args['orderby'] ) { $args['orderby'] = 'date ID'; } /** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */ $args = apply_filters( 'rest_revision_query', $args, $request ); $query_args = $this->prepare_items_query( $args, $request ); $revisions_query = new WP_Query(); $revisions = $revisions_query->query( $query_args ); $offset = isset( $query_args['offset'] ) ? (int) $query_args['offset'] : 0; $page = (int) $query_args['paged']; $total_revisions = $revisions_query->found_posts; if ( $total_revisions < 1 ) { // Out-of-bounds, run the query again without LIMIT for total count. unset( $query_args['paged'], $query_args['offset'] ); $count_query = new WP_Query(); $count_query->query( $query_args ); $total_revisions = $count_query->found_posts; } if ( $revisions_query->query_vars['posts_per_page'] > 0 ) { $max_pages = ceil( $total_revisions / (int) $revisions_query->query_vars['posts_per_page'] ); } else { $max_pages = $total_revisions > 0 ? 1 : 0; } if ( $total_revisions > 0 ) { if ( $offset >= $total_revisions ) { return new WP_Error( 'rest_revision_invalid_offset_number', __( 'The offset number requested is larger than or equal to the number of available revisions.' ), array( 'status' => 400 ) ); } elseif ( ! $offset && $page > $max_pages ) { return new WP_Error( 'rest_revision_invalid_page_number', __( 'The page number requested is larger than the number of pages available.' ), array( 'status' => 400 ) ); } } } else { $revisions = array(); $total_revisions = 0; $max_pages = 0; $page = (int) $request['page']; } $response = array(); foreach ( $revisions as $revision ) { $data = $this->prepare_item_for_response( $revision, $request ); $response[] = $this->prepare_response_for_collection( $data ); } $response = rest_ensure_response( $response ); $response->header( 'X-WP-Total', (int) $total_revisions ); $response->header( 'X-WP-TotalPages', (int) $max_pages ); $request_params = $request->get_query_params(); $base = add_query_arg( urlencode_deep( $request_params ), rest_url( sprintf( '%s/%s/%d/%s', $this->namespace, $this->parent_base, $request['parent'], $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; } /** * Checks if a given request has access to get a specific revision. * * @since 4.7.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 otherwise. */ public function get_item_permissions_check( $request ) { return $this->get_items_permissions_check( $request ); } /** * Retrieves one revision from the collection. * * @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 ) { $parent = $this->get_parent( $request['parent'] ); if ( is_wp_error( $parent ) ) { return $parent; } $revision = $this->get_revision( $request['id'] ); if ( is_wp_error( $revision ) ) { return $revision; } $response = $this->prepare_item_for_response( $revision, $request ); return rest_ensure_response( $response ); } /** * Checks if a given request has access to delete a revision. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return bool|WP_Error True if the request has access to delete the item, WP_Error object otherwise. */ public function delete_item_permissions_check( $request ) { $parent = $this->get_parent( $request['parent'] ); if ( is_wp_error( $parent ) ) { return $parent; } $parent_post_type = get_post_type_object( $parent->post_type ); if ( ! current_user_can( 'delete_post', $parent->ID ) ) { return new WP_Error( 'rest_cannot_delete', __( 'Sorry, you are not allowed to delete revisions of this post.' ), array( 'status' => rest_authorization_required_code() ) ); } $revision = $this->get_revision( $request['id'] ); if ( is_wp_error( $revision ) ) { return $revision; } $response = $this->get_items_permissions_check( $request ); if ( ! $response || is_wp_error( $response ) ) { return $response; } if ( ! current_user_can( 'delete_post', $revision->ID ) ) { return new WP_Error( 'rest_cannot_delete', __( 'Sorry, you are not allowed to delete this revision.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Deletes a single revision. * * @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 ) { $revision = $this->get_revision( $request['id'] ); if ( is_wp_error( $revision ) ) { return $revision; } $force = isset( $request['force'] ) ? (bool) $request['force'] : false; // We don't support trashing for revisions. if ( ! $force ) { return new WP_Error( 'rest_trash_not_supported', /* translators: %s: force=true */ sprintf( __( "Revisions do not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) ); } $previous = $this->prepare_item_for_response( $revision, $request ); $result = wp_delete_post( $request['id'], true ); /** * Fires after a revision is deleted via the REST API. * * @since 4.7.0 * * @param WP_Post|false|null $result The revision object (if it was deleted or moved to the Trash successfully) * or false or null (failure). If the revision was moved to the Trash, $result represents * its new state; if it was deleted, $result represents its state before deletion. * @param WP_REST_Request $request The request sent to the API. */ do_action( 'rest_delete_revision', $result, $request ); 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(), ) ); return $response; } /** * Determines the allowed query_vars for a get_items() response and prepares * them for WP_Query. * * @since 5.0.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 = array(); foreach ( $prepared_args as $key => $value ) { /** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */ $query_args[ $key ] = apply_filters( "rest_query_var-{$key}", $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } // Map to proper WP_Query orderby param. if ( isset( $query_args['orderby'] ) && isset( $request['orderby'] ) ) { $orderby_mappings = array( 'id' => 'ID', 'include' => 'post__in', 'slug' => 'post_name', 'include_slugs' => 'post_name__in', ); if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) { $query_args['orderby'] = $orderby_mappings[ $request['orderby'] ]; } } return $query_args; } /** * Prepares the revision for the REST response. * * @since 4.7.0 * * @param WP_Post $post Post revision object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $post, $request ) { $GLOBALS['post'] = $post; setup_postdata( $post ); $fields = $this->get_fields_for_response( $request ); $data = array(); if ( in_array( 'author', $fields, true ) ) { $data['author'] = (int) $post->post_author; } if ( in_array( 'date', $fields, true ) ) { $data['date'] = $this->prepare_date_response( $post->post_date_gmt, $post->post_date ); } if ( in_array( 'date_gmt', $fields, true ) ) { $data['date_gmt'] = $this->prepare_date_response( $post->post_date_gmt ); } if ( in_array( 'id', $fields, true ) ) { $data['id'] = $post->ID; } if ( in_array( 'modified', $fields, true ) ) { $data['modified'] = $this->prepare_date_response( $post->post_modified_gmt, $post->post_modified ); } if ( in_array( 'modified_gmt', $fields, true ) ) { $data['modified_gmt'] = $this->prepare_date_response( $post->post_modified_gmt ); } if ( in_array( 'parent', $fields, true ) ) { $data['parent'] = (int) $post->post_parent; } if ( in_array( 'slug', $fields, true ) ) { $data['slug'] = $post->post_name; } if ( in_array( 'guid', $fields, true ) ) { $data['guid'] = array( /** This filter is documented in wp-includes/post-template.php */ 'rendered' => apply_filters( 'get_the_guid', $post->guid, $post->ID ), 'raw' => $post->guid, ); } if ( in_array( 'title', $fields, true ) ) { $data['title'] = array( 'raw' => $post->post_title, 'rendered' => get_the_title( $post->ID ), ); } if ( in_array( 'content', $fields, true ) ) { $data['content'] = 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( 'excerpt', $fields, true ) ) { $data['excerpt'] = array( 'raw' => $post->post_excerpt, 'rendered' => $this->prepare_excerpt_response( $post->post_excerpt, $post ), ); } $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 ( ! empty( $data['parent'] ) ) { $response->add_link( 'parent', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->parent_base, $data['parent'] ) ) ); } /** * Filters a revision returned from the API. * * Allows modification of the revision right before it is returned. * * @since 4.7.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_revision', $response, $post, $request ); } /** * Checks the post_date_gmt or modified_gmt and prepare any post or * modified date for single post output. * * @since 4.7.0 * * @param string $date_gmt GMT publication time. * @param string|null $date Optional. Local publication time. Default null. * @return string|null ISO8601/RFC3339 formatted datetime, otherwise null. */ protected function prepare_date_response( $date_gmt, $date = null ) { if ( '0000-00-00 00:00:00' === $date_gmt ) { return null; } if ( isset( $date ) ) { return mysql_to_rfc3339( $date ); } return mysql_to_rfc3339( $date_gmt ); } /** * Retrieves the revision'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' => "{$this->parent_post_type}-revision", 'type' => 'object', // Base properties for every Revision. 'properties' => array( 'author' => array( 'description' => __( 'The ID for the author of the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), ), 'date' => array( 'description' => __( "The date the object was published, in the site's timezone." ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit', 'embed' ), ), 'date_gmt' => array( 'description' => __( 'The date the object was published, as GMT.' ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ), ), 'guid' => array( 'description' => __( 'GUID for the object, as it exists in the database.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), ), 'id' => array( 'description' => __( 'Unique identifier for the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), ), 'modified' => array( 'description' => __( "The date the object was last modified, in the site's timezone." ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ), ), 'modified_gmt' => array( 'description' => __( 'The date the object was last modified, as GMT.' ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ), ), 'parent' => array( 'description' => __( 'The ID for the parent of the object.' ), 'type' => 'integer', 'context' => array( 'view', 'edit', 'embed' ), ), 'slug' => array( 'description' => __( 'An alphanumeric identifier for the object unique to its type.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), ), ), ); $parent_schema = $this->parent_controller->get_item_schema(); if ( ! empty( $parent_schema['properties']['title'] ) ) { $schema['properties']['title'] = $parent_schema['properties']['title']; } if ( ! empty( $parent_schema['properties']['content'] ) ) { $schema['properties']['content'] = $parent_schema['properties']['content']; } if ( ! empty( $parent_schema['properties']['excerpt'] ) ) { $schema['properties']['excerpt'] = $parent_schema['properties']['excerpt']; } if ( ! empty( $parent_schema['properties']['guid'] ) ) { $schema['properties']['guid'] = $parent_schema['properties']['guid']; } $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'; unset( $query_params['per_page']['default'] ); $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( 'description' => __( 'Order sort attribute ascending or descending.' ), 'type' => 'string', 'default' => 'desc', 'enum' => array( 'asc', 'desc' ), ); $query_params['orderby'] = array( 'description' => __( 'Sort collection by object attribute.' ), 'type' => 'string', 'default' => 'date', 'enum' => array( 'date', 'id', 'include', 'relevance', 'slug', 'include_slugs', 'title', ), ); return $query_params; } /** * Checks the post excerpt and prepare it for single post output. * * @since 4.7.0 * * @param string $excerpt The post excerpt. * @param WP_Post $post Post revision object. * @return string Prepared excerpt or empty string. */ protected function prepare_excerpt_response( $excerpt, $post ) { /** This filter is documented in wp-includes/post-template.php */ $excerpt = apply_filters( 'the_excerpt', $excerpt, $post ); if ( empty( $excerpt ) ) { return ''; } return $excerpt; } } endpoints/class-wp-rest-search-controller.php 0000644 00000024342 15213254037 0015417 0 ustar 00 <?php /** * REST API: WP_REST_Search_Controller class * * @package WordPress * @subpackage REST_API * @since 5.0.0 */ /** * Core class to search through all WordPress content via the REST API. * * @since 5.0.0 * * @see WP_REST_Controller */ class WP_REST_Search_Controller extends WP_REST_Controller { /** * ID property name. */ const PROP_ID = 'id'; /** * Title property name. */ const PROP_TITLE = 'title'; /** * URL property name. */ const PROP_URL = 'url'; /** * Type property name. */ const PROP_TYPE = 'type'; /** * Subtype property name. */ const PROP_SUBTYPE = 'subtype'; /** * Identifier for the 'any' type. */ const TYPE_ANY = 'any'; /** * Search handlers used by the controller. * * @since 5.0.0 * @var array */ protected $search_handlers = array(); /** * Constructor. * * @since 5.0.0 * * @param array $search_handlers List of search handlers to use in the controller. Each search * handler instance must extend the `WP_REST_Search_Handler` class. */ public function __construct( array $search_handlers ) { $this->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 objects of the 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 = array_map( 'absint', $result[ WP_REST_Search_Handler::RESULT_IDS ] ); $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 = 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 = 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 * * @param int $id 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( $id, $request ) { $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( $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 ); $links = $handler->prepare_item_links( $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' => 'integer', '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' ), ); 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 array|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 || ! isset( $this->search_handlers[ $type ] ) ) { return new WP_Error( 'rest_search_invalid_type', __( 'Invalid type parameter.' ), array( 'status' => 400 ) ); } return $this->search_handlers[ $type ]; } } endpoints/class-wp-rest-settings-controller.php 0000644 00000024224 15213254037 0016011 0 ustar 00 <?php /** * REST API: WP_REST_Settings_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class used to manage a site's settings via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Settings_Controller extends WP_REST_Controller { /** * Constructor. * * @since 4.7.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'settings'; } /** * Registers the routes for the objects of the controller. * * @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_item' ), 'args' => array(), 'permission_callback' => array( $this, 'get_item_permissions_check' ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'update_item' ), 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ), 'permission_callback' => array( $this, 'get_item_permissions_check' ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks if a given request has access to read and manage settings. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return bool True if the request has read access for the item, otherwise false. */ public function get_item_permissions_check( $request ) { return current_user_can( 'manage_options' ); } /** * Retrieves the settings. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return array|WP_Error Array on success, or WP_Error object on failure. */ public function get_item( $request ) { $options = $this->get_registered_options(); $response = array(); foreach ( $options as $name => $args ) { /** * Filters the value of a setting recognized by the REST API. * * Allow hijacking the setting value and overriding the built-in behavior by returning a * non-null value. The returned value will be presented as the setting value instead. * * @since 4.7.0 * * @param mixed $result Value to use for the requested setting. Can be a scalar * matching the registered schema for the setting, or null to * follow the default get_option() behavior. * @param string $name Setting name (as shown in REST API responses). * @param array $args Arguments passed to register_setting() for this setting. */ $response[ $name ] = apply_filters( 'rest_pre_get_setting', null, $name, $args ); if ( is_null( $response[ $name ] ) ) { // Default to a null value as "null" in the response means "not set". $response[ $name ] = get_option( $args['option_name'], $args['schema']['default'] ); } /* * Because get_option() is lossy, we have to * cast values to the type they are registered with. */ $response[ $name ] = $this->prepare_value( $response[ $name ], $args['schema'] ); } return $response; } /** * Prepares a value for output based off a schema array. * * @since 4.7.0 * * @param mixed $value Value to prepare. * @param array $schema Schema to match. * @return mixed The prepared value. */ protected function prepare_value( $value, $schema ) { /* * If the value is not valid by the schema, set the value to null. * Null values are specifically non-destructive, so this will not cause * overwriting the current invalid value to null. */ if ( is_wp_error( rest_validate_value_from_schema( $value, $schema ) ) ) { return null; } return rest_sanitize_value_from_schema( $value, $schema ); } /** * Updates settings for the settings object. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return array|WP_Error Array on success, or error object on failure. */ public function update_item( $request ) { $options = $this->get_registered_options(); $params = $request->get_params(); foreach ( $options as $name => $args ) { if ( ! array_key_exists( $name, $params ) ) { continue; } /** * Filters whether to preempt a setting value update. * * Allows hijacking the setting update logic and overriding the built-in behavior by * returning true. * * @since 4.7.0 * * @param bool $result Whether to override the default behavior for updating the * value of a setting. * @param string $name Setting name (as shown in REST API responses). * @param mixed $value Updated setting value. * @param array $args Arguments passed to register_setting() for this setting. */ $updated = apply_filters( 'rest_pre_update_setting', false, $name, $request[ $name ], $args ); if ( $updated ) { continue; } /* * A null value for an option would have the same effect as * deleting the option from the database, and relying on the * default value. */ if ( is_null( $request[ $name ] ) ) { /* * A null value is returned in the response for any option * that has a non-scalar value. * * To protect clients from accidentally including the null * values from a response object in a request, we do not allow * options with values that don't pass validation to be updated to null. * Without this added protection a client could mistakenly * delete all options that have invalid values from the * database. */ if ( is_wp_error( rest_validate_value_from_schema( get_option( $args['option_name'], false ), $args['schema'] ) ) ) { return new WP_Error( 'rest_invalid_stored_value', /* translators: %s: Property name. */ sprintf( __( 'The %s property has an invalid stored value, and cannot be updated to null.' ), $name ), array( 'status' => 500 ) ); } delete_option( $args['option_name'] ); } else { update_option( $args['option_name'], $request[ $name ] ); } } return $this->get_item( $request ); } /** * Retrieves all of the registered options for the Settings API. * * @since 4.7.0 * * @return array Array of registered options. */ protected function get_registered_options() { $rest_options = array(); foreach ( get_registered_settings() as $name => $args ) { if ( empty( $args['show_in_rest'] ) ) { continue; } $rest_args = array(); if ( is_array( $args['show_in_rest'] ) ) { $rest_args = $args['show_in_rest']; } $defaults = array( 'name' => ! empty( $rest_args['name'] ) ? $rest_args['name'] : $name, 'schema' => array(), ); $rest_args = array_merge( $defaults, $rest_args ); $default_schema = array( 'type' => empty( $args['type'] ) ? null : $args['type'], 'description' => empty( $args['description'] ) ? '' : $args['description'], 'default' => isset( $args['default'] ) ? $args['default'] : null, ); $rest_args['schema'] = array_merge( $default_schema, $rest_args['schema'] ); $rest_args['option_name'] = $name; // Skip over settings that don't have a defined type in the schema. if ( empty( $rest_args['schema']['type'] ) ) { continue; } /* * Allow the supported types for settings, as we don't want invalid types * to be updated with arbitrary values that we can't do decent sanitizing for. */ if ( ! in_array( $rest_args['schema']['type'], array( 'number', 'integer', 'string', 'boolean', 'array', 'object' ), true ) ) { continue; } $rest_args['schema'] = $this->set_additional_properties_to_false( $rest_args['schema'] ); $rest_options[ $rest_args['name'] ] = $rest_args; } return $rest_options; } /** * Retrieves the site setting 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 ); } $options = $this->get_registered_options(); $schema = array( '$schema' => 'http://json-schema.org/draft-04/schema#', 'title' => 'settings', 'type' => 'object', 'properties' => array(), ); foreach ( $options as $option_name => $option ) { $schema['properties'][ $option_name ] = $option['schema']; $schema['properties'][ $option_name ]['arg_options'] = array( 'sanitize_callback' => array( $this, 'sanitize_callback' ), ); } $this->schema = $schema; return $this->add_additional_fields_schema( $this->schema ); } /** * Custom sanitize callback used for all options to allow the use of 'null'. * * By default, the schema of settings will throw an error if a value is set to * `null` as it's not a valid value for something like "type => string". We * provide a wrapper sanitizer to allow the use of `null`. * * @since 4.7.0 * * @param mixed $value The value for the setting. * @param WP_REST_Request $request The request object. * @param string $param The parameter name. * @return mixed|WP_Error */ public function sanitize_callback( $value, $request, $param ) { if ( is_null( $value ) ) { return $value; } return rest_parse_request_arg( $value, $request, $param ); } /** * Recursively add additionalProperties = false to all objects in a schema. * * This is need to restrict properties of objects in settings values to only * registered items, as the REST API will allow additional properties by * default. * * @since 4.9.0 * * @param array $schema The schema array. * @return array */ protected function set_additional_properties_to_false( $schema ) { switch ( $schema['type'] ) { case 'object': foreach ( $schema['properties'] as $key => $child_schema ) { $schema['properties'][ $key ] = $this->set_additional_properties_to_false( $child_schema ); } $schema['additionalProperties'] = false; break; case 'array': $schema['items'] = $this->set_additional_properties_to_false( $schema['items'] ); break; } return $schema; } } endpoints/class-wp-rest-taxonomies-controller.php 0000644 00000030330 15213254037 0016332 0 ustar 00 <?php /** * REST API: WP_REST_Taxonomies_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class used to manage taxonomies via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Taxonomies_Controller extends WP_REST_Controller { /** * Constructor. * * @since 4.7.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'taxonomies'; } /** * Registers the routes for the objects of the controller. * * @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(), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<taxonomy>[\w-]+)', array( 'args' => array( 'taxonomy' => array( 'description' => __( 'An alphanumeric identifier for the taxonomy.' ), 'type' => 'string', ), ), 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' ) ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks whether a given request has permission to read taxonomies. * * @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, WP_Error object otherwise. */ public function get_items_permissions_check( $request ) { if ( 'edit' === $request['context'] ) { if ( ! empty( $request['type'] ) ) { $taxonomies = get_object_taxonomies( $request['type'], 'objects' ); } else { $taxonomies = get_taxonomies( '', 'objects' ); } foreach ( $taxonomies as $taxonomy ) { if ( ! empty( $taxonomy->show_in_rest ) && current_user_can( $taxonomy->cap->assign_terms ) ) { return true; } } return new WP_Error( 'rest_cannot_view', __( 'Sorry, you are not allowed to manage terms in this taxonomy.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Retrieves all public taxonomies. * * @since 4.7.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 get_items( $request ) { // Retrieve the list of registered collection query parameters. $registered = $this->get_collection_params(); if ( isset( $registered['type'] ) && ! empty( $request['type'] ) ) { $taxonomies = get_object_taxonomies( $request['type'], 'objects' ); } else { $taxonomies = get_taxonomies( '', 'objects' ); } $data = array(); foreach ( $taxonomies as $tax_type => $value ) { if ( empty( $value->show_in_rest ) || ( 'edit' === $request['context'] && ! current_user_can( $value->cap->assign_terms ) ) ) { continue; } $tax = $this->prepare_item_for_response( $value, $request ); $tax = $this->prepare_response_for_collection( $tax ); $data[ $tax_type ] = $tax; } if ( empty( $data ) ) { // Response should still be returned as a JSON object when it is empty. $data = (object) $data; } return rest_ensure_response( $data ); } /** * Checks if a given request has access to a taxonomy. * * @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 false or WP_Error object. */ public function get_item_permissions_check( $request ) { $tax_obj = get_taxonomy( $request['taxonomy'] ); if ( $tax_obj ) { if ( empty( $tax_obj->show_in_rest ) ) { return false; } if ( 'edit' === $request['context'] && ! current_user_can( $tax_obj->cap->assign_terms ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to manage terms in this taxonomy.' ), array( 'status' => rest_authorization_required_code() ) ); } } return true; } /** * Retrieves a specific taxonomy. * * @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 ) { $tax_obj = get_taxonomy( $request['taxonomy'] ); if ( empty( $tax_obj ) ) { return new WP_Error( 'rest_taxonomy_invalid', __( 'Invalid taxonomy.' ), array( 'status' => 404 ) ); } $data = $this->prepare_item_for_response( $tax_obj, $request ); return rest_ensure_response( $data ); } /** * Prepares a taxonomy object for serialization. * * @since 4.7.0 * * @param WP_Taxonomy $taxonomy Taxonomy data. * @param WP_REST_Request $request Full details about the request. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $taxonomy, $request ) { $base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name; $fields = $this->get_fields_for_response( $request ); $data = array(); if ( in_array( 'name', $fields, true ) ) { $data['name'] = $taxonomy->label; } if ( in_array( 'slug', $fields, true ) ) { $data['slug'] = $taxonomy->name; } if ( in_array( 'capabilities', $fields, true ) ) { $data['capabilities'] = $taxonomy->cap; } if ( in_array( 'description', $fields, true ) ) { $data['description'] = $taxonomy->description; } if ( in_array( 'labels', $fields, true ) ) { $data['labels'] = $taxonomy->labels; } if ( in_array( 'types', $fields, true ) ) { $data['types'] = array_values( $taxonomy->object_type ); } if ( in_array( 'show_cloud', $fields, true ) ) { $data['show_cloud'] = $taxonomy->show_tagcloud; } if ( in_array( 'hierarchical', $fields, true ) ) { $data['hierarchical'] = $taxonomy->hierarchical; } if ( in_array( 'rest_base', $fields, true ) ) { $data['rest_base'] = $base; } if ( in_array( 'visibility', $fields, true ) ) { $data['visibility'] = array( 'public' => (bool) $taxonomy->public, 'publicly_queryable' => (bool) $taxonomy->publicly_queryable, 'show_admin_column' => (bool) $taxonomy->show_admin_column, 'show_in_nav_menus' => (bool) $taxonomy->show_in_nav_menus, 'show_in_quick_edit' => (bool) $taxonomy->show_in_quick_edit, 'show_ui' => (bool) $taxonomy->show_ui, ); } $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 ); $response->add_links( array( 'collection' => array( 'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ), ), 'https://api.w.org/items' => array( 'href' => rest_url( sprintf( 'wp/v2/%s', $base ) ), ), ) ); /** * Filters a taxonomy returned from the REST API. * * Allows modification of the taxonomy data right before it is returned. * * @since 4.7.0 * * @param WP_REST_Response $response The response object. * @param WP_Taxonomy $item The original taxonomy object. * @param WP_REST_Request $request Request used to generate the response. */ return apply_filters( 'rest_prepare_taxonomy', $response, $taxonomy, $request ); } /** * Retrieves the taxonomy'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' => 'taxonomy', 'type' => 'object', 'properties' => array( 'capabilities' => array( 'description' => __( 'All capabilities used by the taxonomy.' ), 'type' => 'object', 'context' => array( 'edit' ), 'readonly' => true, ), 'description' => array( 'description' => __( 'A human-readable description of the taxonomy.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'hierarchical' => array( 'description' => __( 'Whether or not the taxonomy should have children.' ), 'type' => 'boolean', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'labels' => array( 'description' => __( 'Human-readable labels for the taxonomy for various contexts.' ), 'type' => 'object', 'context' => array( 'edit' ), 'readonly' => true, ), 'name' => array( 'description' => __( 'The title for the taxonomy.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'slug' => array( 'description' => __( 'An alphanumeric identifier for the taxonomy.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'show_cloud' => array( 'description' => __( 'Whether or not the term cloud should be displayed.' ), 'type' => 'boolean', 'context' => array( 'edit' ), 'readonly' => true, ), 'types' => array( 'description' => __( 'Types associated with the taxonomy.' ), 'type' => 'array', 'items' => array( 'type' => 'string', ), 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'rest_base' => array( 'description' => __( 'REST base route for the taxonomy.' ), 'type' => 'string', 'context' => array( 'view', 'edit', 'embed' ), 'readonly' => true, ), 'visibility' => array( 'description' => __( 'The visibility settings for the taxonomy.' ), 'type' => 'object', 'context' => array( 'edit' ), 'readonly' => true, 'properties' => array( 'public' => array( 'description' => __( 'Whether a taxonomy is intended for use publicly either via the admin interface or by front-end users.' ), 'type' => 'boolean', ), 'publicly_queryable' => array( 'description' => __( 'Whether the taxonomy is publicly queryable.' ), 'type' => 'boolean', ), 'show_ui' => array( 'description' => __( 'Whether to generate a default UI for managing this taxonomy.' ), 'type' => 'boolean', ), 'show_admin_column' => array( 'description' => __( 'Whether to allow automatic creation of taxonomy columns on associated post-types table.' ), 'type' => 'boolean', ), 'show_in_nav_menus' => array( 'description' => __( 'Whether to make the taxonomy available for selection in navigation menus.' ), 'type' => 'boolean', ), 'show_in_quick_edit' => array( 'description' => __( 'Whether to show the taxonomy in the quick/bulk edit panel.' ), 'type' => 'boolean', ), ), ), ), ); $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() { $new_params = array(); $new_params['context'] = $this->get_context_param( array( 'default' => 'view' ) ); $new_params['type'] = array( 'description' => __( 'Limit results to taxonomies associated with a specific post type.' ), 'type' => 'string', ); return $new_params; } } endpoints/class-wp-rest-terms-controller.php 0000644 00000100642 15213254037 0015302 0 ustar 00 <?php /** * REST API: WP_REST_Terms_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class used to managed terms associated with a taxonomy via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Terms_Controller extends WP_REST_Controller { /** * Taxonomy key. * * @since 4.7.0 * @var string */ protected $taxonomy; /** * Instance of a term meta fields object. * * @since 4.7.0 * @var WP_REST_Term_Meta_Fields */ protected $meta; /** * Column to have the terms be sorted by. * * @since 4.7.0 * @var string */ protected $sort_column; /** * Number of terms that were found. * * @since 4.7.0 * @var int */ protected $total_terms; /** * Constructor. * * @since 4.7.0 * * @param string $taxonomy Taxonomy key. */ public function __construct( $taxonomy ) { $this->taxonomy = $taxonomy; $this->namespace = 'wp/v2'; $tax_obj = get_taxonomy( $taxonomy ); $this->rest_base = ! empty( $tax_obj->rest_base ) ? $tax_obj->rest_base : $tax_obj->name; $this->meta = new WP_REST_Term_Meta_Fields( $taxonomy ); } /** * Registers the routes for the objects of the controller. * * @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 ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array( 'args' => array( 'id' => array( 'description' => __( 'Unique identifier for the term.' ), '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 terms do not support trashing.' ), ), ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); } /** * Checks if the terms for a post can be read. * * @since 6.0.3 * * @param WP_Post $post Post object. * @param WP_REST_Request $request Full details about the request. * @return bool Whether the terms for the post can be read. */ public function check_read_terms_permission_for_post( $post, $request ) { // If the requested post isn't associated with this taxonomy, deny access. if ( ! is_object_in_taxonomy( $post->post_type, $this->taxonomy ) ) { return false; } // Grant access if the post is publicly viewable. if ( is_post_publicly_viewable( $post ) ) { return true; } // Otherwise grant access if the post is readable by the logged in user. if ( current_user_can( 'read_post', $post->ID ) ) { return true; } // Otherwise, deny access. return false; } /** * Checks if a request has access to read terms in the specified taxonomy. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return bool|WP_Error True if the request has read access, otherwise false or WP_Error object. */ public function get_items_permissions_check( $request ) { $tax_obj = get_taxonomy( $this->taxonomy ); if ( ! $tax_obj || ! $this->check_is_taxonomy_allowed( $this->taxonomy ) ) { return false; } if ( 'edit' === $request['context'] && ! current_user_can( $tax_obj->cap->edit_terms ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit terms in this taxonomy.' ), array( 'status' => rest_authorization_required_code() ) ); } if ( ! empty( $request['post'] ) ) { $post = get_post( $request['post'] ); if ( ! $post ) { return new WP_Error( 'rest_post_invalid_id', __( 'Invalid post ID.' ), array( 'status' => 400, ) ); } if ( ! $this->check_read_terms_permission_for_post( $post, $request ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to view terms for this post.' ), array( 'status' => rest_authorization_required_code(), ) ); } } return true; } /** * Retrieves terms associated with a taxonomy. * * @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_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', 'orderby' => 'orderby', 'post' => 'post', 'hide_empty' => 'hide_empty', 'per_page' => 'number', 'search' => 'search', 'slug' => 'slug', ); $prepared_args = array( 'taxonomy' => $this->taxonomy ); /* * 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( $prepared_args['orderby'] ) && isset( $request['orderby'] ) ) { $orderby_mappings = array( 'include_slugs' => 'slug__in', ); if ( isset( $orderby_mappings[ $request['orderby'] ] ) ) { $prepared_args['orderby'] = $orderby_mappings[ $request['orderby'] ]; } } if ( isset( $registered['offset'] ) && ! empty( $request['offset'] ) ) { $prepared_args['offset'] = $request['offset']; } else { $prepared_args['offset'] = ( $request['page'] - 1 ) * $prepared_args['number']; } $taxonomy_obj = get_taxonomy( $this->taxonomy ); if ( $taxonomy_obj->hierarchical && isset( $registered['parent'], $request['parent'] ) ) { if ( 0 === $request['parent'] ) { // Only query top-level terms. $prepared_args['parent'] = 0; } else { if ( $request['parent'] ) { $prepared_args['parent'] = $request['parent']; } } } /** * Filters the query arguments before passing them to get_terms(). * * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug. * * Enables adding extra arguments or setting defaults for a terms * collection request. * * @since 4.7.0 * * @link https://developer.wordpress.org/reference/functions/get_terms/ * * @param array $prepared_args Array of arguments to be * passed to get_terms(). * @param WP_REST_Request $request The current request. */ $prepared_args = apply_filters( "rest_{$this->taxonomy}_query", $prepared_args, $request ); if ( ! empty( $prepared_args['post'] ) ) { $query_result = wp_get_object_terms( $prepared_args['post'], $this->taxonomy, $prepared_args ); // Used when calling wp_count_terms() below. $prepared_args['object_ids'] = $prepared_args['post']; } else { $query_result = get_terms( $prepared_args ); } $count_args = $prepared_args; unset( $count_args['number'], $count_args['offset'] ); $total_terms = wp_count_terms( $this->taxonomy, $count_args ); // wp_count_terms() can return a falsey value when the term has no children. if ( ! $total_terms ) { $total_terms = 0; } $response = array(); foreach ( $query_result as $term ) { if ( 'edit' === $request['context'] && ! current_user_can( 'edit_term', $term->term_id ) ) { continue; } $data = $this->prepare_item_for_response( $term, $request ); $response[] = $this->prepare_response_for_collection( $data ); } $response = rest_ensure_response( $response ); // Store pagination values for headers. $per_page = (int) $prepared_args['number']; $page = ceil( ( ( (int) $prepared_args['offset'] ) / $per_page ) + 1 ); $response->header( 'X-WP-Total', (int) $total_terms ); $max_pages = ceil( $total_terms / $per_page ); $response->header( 'X-WP-TotalPages', (int) $max_pages ); $base = add_query_arg( urlencode_deep( $request->get_query_params() ), rest_url( $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 term, if the ID is valid. * * @since 4.7.2 * * @param int $id Supplied ID. * @return WP_Term|WP_Error Term object if ID is valid, WP_Error otherwise. */ protected function get_term( $id ) { $error = new WP_Error( 'rest_term_invalid', __( 'Term does not exist.' ), array( 'status' => 404 ) ); if ( ! $this->check_is_taxonomy_allowed( $this->taxonomy ) ) { return $error; } if ( (int) $id <= 0 ) { return $error; } $term = get_term( (int) $id, $this->taxonomy ); if ( empty( $term ) || $term->taxonomy !== $this->taxonomy ) { return $error; } return $term; } /** * Checks if a request has access to read or edit the specified term. * * @since 4.7.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, otherwise false or WP_Error object. */ public function get_item_permissions_check( $request ) { $term = $this->get_term( $request['id'] ); if ( is_wp_error( $term ) ) { return $term; } if ( 'edit' === $request['context'] && ! current_user_can( 'edit_term', $term->term_id ) ) { return new WP_Error( 'rest_forbidden_context', __( 'Sorry, you are not allowed to edit this term.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Gets a single term from a taxonomy. * * @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 ) { $term = $this->get_term( $request['id'] ); if ( is_wp_error( $term ) ) { return $term; } $response = $this->prepare_item_for_response( $term, $request ); return rest_ensure_response( $response ); } /** * Checks if a request has access to create a term. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return bool|WP_Error True if the request has access to create items, false or WP_Error object otherwise. */ public function create_item_permissions_check( $request ) { if ( ! $this->check_is_taxonomy_allowed( $this->taxonomy ) ) { return false; } $taxonomy_obj = get_taxonomy( $this->taxonomy ); if ( ( is_taxonomy_hierarchical( $this->taxonomy ) && ! current_user_can( $taxonomy_obj->cap->edit_terms ) ) || ( ! is_taxonomy_hierarchical( $this->taxonomy ) && ! current_user_can( $taxonomy_obj->cap->assign_terms ) ) ) { return new WP_Error( 'rest_cannot_create', __( 'Sorry, you are not allowed to create terms in this taxonomy.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Creates a single term in a taxonomy. * * @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 ( isset( $request['parent'] ) ) { if ( ! is_taxonomy_hierarchical( $this->taxonomy ) ) { return new WP_Error( 'rest_taxonomy_not_hierarchical', __( 'Cannot set parent term, taxonomy is not hierarchical.' ), array( 'status' => 400 ) ); } $parent = get_term( (int) $request['parent'], $this->taxonomy ); if ( ! $parent ) { return new WP_Error( 'rest_term_invalid', __( 'Parent term does not exist.' ), array( 'status' => 400 ) ); } } $prepared_term = $this->prepare_item_for_database( $request ); $term = wp_insert_term( wp_slash( $prepared_term->name ), $this->taxonomy, wp_slash( (array) $prepared_term ) ); if ( is_wp_error( $term ) ) { /* * If we're going to inform the client that the term already exists, * give them the identifier for future use. */ $term_id = $term->get_error_data( 'term_exists' ); if ( $term_id ) { $existing_term = get_term( $term_id, $this->taxonomy ); $term->add_data( $existing_term->term_id, 'term_exists' ); $term->add_data( array( 'status' => 400, 'term_id' => $term_id, ) ); } return $term; } $term = get_term( $term['term_id'], $this->taxonomy ); /** * Fires after a single term is created or updated via the REST API. * * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug. * * @since 4.7.0 * * @param WP_Term $term Inserted or updated term object. * @param WP_REST_Request $request Request object. * @param bool $creating True when creating a term, false when updating. */ do_action( "rest_insert_{$this->taxonomy}", $term, $request, true ); $schema = $this->get_item_schema(); if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { $meta_update = $this->meta->update_value( $request['meta'], $term->term_id ); if ( is_wp_error( $meta_update ) ) { return $meta_update; } } $fields_update = $this->update_additional_fields_for_object( $term, $request ); if ( is_wp_error( $fields_update ) ) { return $fields_update; } $request->set_param( 'context', 'edit' ); /** * Fires after a single term is completely created or updated via the REST API. * * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug. * * @since 5.0.0 * * @param WP_Term $term Inserted or updated term object. * @param WP_REST_Request $request Request object. * @param bool $creating True when creating a term, false when updating. */ do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, true ); $response = $this->prepare_item_for_response( $term, $request ); $response = rest_ensure_response( $response ); $response->set_status( 201 ); $response->header( 'Location', rest_url( $this->namespace . '/' . $this->rest_base . '/' . $term->term_id ) ); return $response; } /** * Checks if a request has access to update the specified term. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return bool|WP_Error True if the request has access to update the item, false or WP_Error object otherwise. */ public function update_item_permissions_check( $request ) { $term = $this->get_term( $request['id'] ); if ( is_wp_error( $term ) ) { return $term; } if ( ! current_user_can( 'edit_term', $term->term_id ) ) { return new WP_Error( 'rest_cannot_update', __( 'Sorry, you are not allowed to edit this term.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Updates a single term from a taxonomy. * * @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 ) { $term = $this->get_term( $request['id'] ); if ( is_wp_error( $term ) ) { return $term; } if ( isset( $request['parent'] ) ) { if ( ! is_taxonomy_hierarchical( $this->taxonomy ) ) { return new WP_Error( 'rest_taxonomy_not_hierarchical', __( 'Cannot set parent term, taxonomy is not hierarchical.' ), array( 'status' => 400 ) ); } $parent = get_term( (int) $request['parent'], $this->taxonomy ); if ( ! $parent ) { return new WP_Error( 'rest_term_invalid', __( 'Parent term does not exist.' ), array( 'status' => 400 ) ); } } $prepared_term = $this->prepare_item_for_database( $request ); // Only update the term if we have something to update. if ( ! empty( $prepared_term ) ) { $update = wp_update_term( $term->term_id, $term->taxonomy, wp_slash( (array) $prepared_term ) ); if ( is_wp_error( $update ) ) { return $update; } } $term = get_term( $term->term_id, $this->taxonomy ); /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */ do_action( "rest_insert_{$this->taxonomy}", $term, $request, false ); $schema = $this->get_item_schema(); if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { $meta_update = $this->meta->update_value( $request['meta'], $term->term_id ); if ( is_wp_error( $meta_update ) ) { return $meta_update; } } $fields_update = $this->update_additional_fields_for_object( $term, $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-terms-controller.php */ do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false ); $response = $this->prepare_item_for_response( $term, $request ); return rest_ensure_response( $response ); } /** * Checks if a request has access to delete the specified term. * * @since 4.7.0 * * @param WP_REST_Request $request Full details about the request. * @return bool|WP_Error True if the request has access to delete the item, otherwise false or WP_Error object. */ public function delete_item_permissions_check( $request ) { $term = $this->get_term( $request['id'] ); if ( is_wp_error( $term ) ) { return $term; } if ( ! current_user_can( 'delete_term', $term->term_id ) ) { return new WP_Error( 'rest_cannot_delete', __( 'Sorry, you are not allowed to delete this term.' ), array( 'status' => rest_authorization_required_code() ) ); } return true; } /** * Deletes a single term from a taxonomy. * * @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 ) { $term = $this->get_term( $request['id'] ); if ( is_wp_error( $term ) ) { return $term; } $force = isset( $request['force'] ) ? (bool) $request['force'] : false; // We don't support trashing for terms. if ( ! $force ) { return new WP_Error( 'rest_trash_not_supported', /* translators: %s: force=true */ sprintf( __( "Terms do not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) ); } $request->set_param( 'context', 'view' ); $previous = $this->prepare_item_for_response( $term, $request ); $retval = wp_delete_term( $term->term_id, $term->taxonomy ); if ( ! $retval ) { return new WP_Error( 'rest_cannot_delete', __( 'The term cannot be deleted.' ), array( 'status' => 500 ) ); } $response = new WP_REST_Response(); $response->set_data( array( 'deleted' => true, 'previous' => $previous->get_data(), ) ); /** * Fires after a single term is deleted via the REST API. * * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug. * * @since 4.7.0 * * @param WP_Term $term The deleted term. * @param WP_REST_Response $response The response data. * @param WP_REST_Request $request The request sent to the API. */ do_action( "rest_delete_{$this->taxonomy}", $term, $response, $request ); return $response; } /** * Prepares a single term for create or update. * * @since 4.7.0 * * @param WP_REST_Request $request Request object. * @return object Term object. */ public function prepare_item_for_database( $request ) { $prepared_term = new stdClass; $schema = $this->get_item_schema(); if ( isset( $request['name'] ) && ! empty( $schema['properties']['name'] ) ) { $prepared_term->name = $request['name']; } if ( isset( $request['slug'] ) && ! empty( $schema['properties']['slug'] ) ) { $prepared_term->slug = $request['slug']; } if ( isset( $request['taxonomy'] ) && ! empty( $schema['properties']['taxonomy'] ) ) { $prepared_term->taxonomy = $request['taxonomy']; } if ( isset( $request['description'] ) && ! empty( $schema['properties']['description'] ) ) { $prepared_term->description = $request['description']; } if ( isset( $request['parent'] ) && ! empty( $schema['properties']['parent'] ) ) { $parent_term_id = 0; $requested_parent = (int) $request['parent']; if ( $requested_parent ) { $parent_term = get_term( $requested_parent, $this->taxonomy ); if ( $parent_term instanceof WP_Term ) { $parent_term_id = $parent_term->term_id; } } $prepared_term->parent = $parent_term_id; } /** * Filters term data before inserting term via the REST API. * * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug. * * @since 4.7.0 * * @param object $prepared_term Term object. * @param WP_REST_Request $request Request object. */ return apply_filters( "rest_pre_insert_{$this->taxonomy}", $prepared_term, $request ); } /** * Prepares a single term output for response. * * @since 4.7.0 * * @param WP_Term $item Term object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $item, $request ) { $fields = $this->get_fields_for_response( $request ); $data = array(); if ( in_array( 'id', $fields, true ) ) { $data['id'] = (int) $item->term_id; } if ( in_array( 'count', $fields, true ) ) { $data['count'] = (int) $item->count; } if ( in_array( 'description', $fields, true ) ) { $data['description'] = $item->description; } if ( in_array( 'link', $fields, true ) ) { $data['link'] = get_term_link( $item ); } if ( in_array( 'name', $fields, true ) ) { $data['name'] = $item->name; } if ( in_array( 'slug', $fields, true ) ) { $data['slug'] = $item->slug; } if ( in_array( 'taxonomy', $fields, true ) ) { $data['taxonomy'] = $item->taxonomy; } if ( in_array( 'parent', $fields, true ) ) { $data['parent'] = (int) $item->parent; } if ( in_array( 'meta', $fields, true ) ) { $data['meta'] = $this->meta->get_value( $item->term_id, $request ); } $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 ); $response->add_links( $this->prepare_links( $item ) ); /** * Filters a term item returned from the API. * * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug. * * Allows modification of the term data right before it is returned. * * @since 4.7.0 * * @param WP_REST_Response $response The response object. * @param WP_Term $item The original term object. * @param WP_REST_Request $request Request used to generate the response. */ return apply_filters( "rest_prepare_{$this->taxonomy}", $response, $item, $request ); } /** * Prepares links for the request. * * @since 4.7.0 * * @param WP_Term $term Term object. * @return array Links for the given term. */ protected function prepare_links( $term ) { $base = $this->namespace . '/' . $this->rest_base; $links = array( 'self' => array( 'href' => rest_url( trailingslashit( $base ) . $term->term_id ), ), 'collection' => array( 'href' => rest_url( $base ), ), 'about' => array( 'href' => rest_url( sprintf( 'wp/v2/taxonomies/%s', $this->taxonomy ) ), ), ); if ( $term->parent ) { $parent_term = get_term( (int) $term->parent, $term->taxonomy ); if ( $parent_term ) { $links['up'] = array( 'href' => rest_url( trailingslashit( $base ) . $parent_term->term_id ), 'embeddable' => true, ); } } $taxonomy_obj = get_taxonomy( $term->taxonomy ); if ( empty( $taxonomy_obj->object_type ) ) { return $links; } $post_type_links = array(); foreach ( $taxonomy_obj->object_type as $type ) { $post_type_object = get_post_type_object( $type ); if ( empty( $post_type_object->show_in_rest ) ) { continue; } $rest_base = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name; $post_type_links[] = array( 'href' => add_query_arg( $this->rest_base, $term->term_id, rest_url( sprintf( 'wp/v2/%s', $rest_base ) ) ), ); } if ( ! empty( $post_type_links ) ) { $links['https://api.w.org/post_type'] = $post_type_links; } return $links; } /** * Retrieves the term'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' => 'post_tag' === $this->taxonomy ? 'tag' : $this->taxonomy, 'type' => 'object', 'properties' => array( 'id' => array( 'description' => __( 'Unique identifier for the term.' ), 'type' => 'integer', 'context' => array( 'view', 'embed', 'edit' ), 'readonly' => true, ), 'count' => array( 'description' => __( 'Number of published posts for the term.' ), 'type' => 'integer', 'context' => array( 'view', 'edit' ), 'readonly' => true, ), 'description' => array( 'description' => __( 'HTML description of the term.' ), 'type' => 'string', 'context' => array( 'view', 'edit' ), ), 'link' => array( 'description' => __( 'URL of the term.' ), 'type' => 'string', 'format' => 'uri', 'context' => array( 'view', 'embed', 'edit' ), 'readonly' => true, ), 'name' => array( 'description' => __( 'HTML title for the term.' ), 'type' => 'string', 'context' => array( 'view', 'embed', 'edit' ), 'arg_options' => array( 'sanitize_callback' => 'sanitize_text_field', ), 'required' => true, ), 'slug' => array( 'description' => __( 'An alphanumeric identifier for the term unique to its type.' ), 'type' => 'string', 'context' => array( 'view', 'embed', 'edit' ), 'arg_options' => array( 'sanitize_callback' => array( $this, 'sanitize_slug' ), ), ), 'taxonomy' => array( 'description' => __( 'Type attribution for the term.' ), 'type' => 'string', 'enum' => array_keys( get_taxonomies() ), 'context' => array( 'view', 'embed', 'edit' ), 'readonly' => true, ), ), ); $taxonomy = get_taxonomy( $this->taxonomy ); if ( $taxonomy->hierarchical ) { $schema['properties']['parent'] = array( 'description' => __( 'The parent term ID.' ), 'type' => 'integer', 'context' => array( 'view', 'edit' ), ); } $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(); $taxonomy = get_taxonomy( $this->taxonomy ); $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(), ); if ( ! $taxonomy->hierarchical ) { $query_params['offset'] = array( 'description' => __( 'Offset the result set by a specific number of items.' ), '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 term attribute.' ), 'type' => 'string', 'default' => 'name', 'enum' => array( 'id', 'include', 'name', 'slug', 'include_slugs', 'term_group', 'description', 'count', ), ); $query_params['hide_empty'] = array( 'description' => __( 'Whether to hide terms not assigned to any posts.' ), 'type' => 'boolean', 'default' => false, ); if ( $taxonomy->hierarchical ) { $query_params['parent'] = array( 'description' => __( 'Limit result set to terms assigned to a specific parent.' ), 'type' => 'integer', ); } $query_params['post'] = array( 'description' => __( 'Limit result set to terms assigned to a specific post.' ), 'type' => 'integer', 'default' => null, ); $query_params['slug'] = array( 'description' => __( 'Limit result set to terms with one or more specific slugs.' ), 'type' => 'array', 'items' => array( 'type' => 'string', ), ); /** * Filter collection parameters for the terms controller. * * The dynamic part of the filter `$this->taxonomy` refers to the taxonomy * slug for the controller. * * This filter registers the collection parameter, but does not map the * collection parameter to an internal WP_Term_Query parameter. Use the * `rest_{$this->taxonomy}_query` filter to set WP_Term_Query parameters. * * @since 4.7.0 * * @param array $query_params JSON Schema-formatted collection parameters. * @param WP_Taxonomy $taxonomy Taxonomy object. */ return apply_filters( "rest_{$this->taxonomy}_collection_params", $query_params, $taxonomy ); } /** * Checks that the taxonomy is valid. * * @since 4.7.0 * * @param string $taxonomy Taxonomy to check. * @return bool Whether the taxonomy is allowed for REST management. */ protected function check_is_taxonomy_allowed( $taxonomy ) { $taxonomy_obj = get_taxonomy( $taxonomy ); if ( $taxonomy_obj && ! empty( $taxonomy_obj->show_in_rest ) ) { return true; } return false; } } endpoints/class-wp-rest-themes-controller.php 0000644 00000033420 15213254037 0015434 0 ustar 00 <?php /** * REST API: WP_REST_Themes_Controller class * * @package WordPress * @subpackage REST_API * @since 5.0.0 */ /** * Core class used to manage themes via the REST API. * * @since 5.0.0 * * @see WP_REST_Controller */ class WP_REST_Themes_Controller extends WP_REST_Controller { /** * Constructor. * * @since 5.0.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'themes'; } /** * Registers the routes for the objects of the 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_permissions_check' ), 'args' => $this->get_collection_params(), ), 'schema' => array( $this, 'get_item_schema' ), ) ); } /** * Checks if a given request has access to read the theme. * * @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 for the item, otherwise WP_Error object. */ 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_user_cannot_view', __( 'Sorry, you are not allowed to view themes.' ), array( 'status' => rest_authorization_required_code() ) ); } /** * Retrieves a collection of themes. * * @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 ) { // Retrieve the list of registered collection query parameters. $registered = $this->get_collection_params(); $themes = array(); if ( isset( $registered['status'], $request['status'] ) && in_array( 'active', $request['status'], true ) ) { $active_theme = wp_get_theme(); $active_theme = $this->prepare_item_for_response( $active_theme, $request ); $themes[] = $this->prepare_response_for_collection( $active_theme ); } $response = rest_ensure_response( $themes ); $response->header( 'X-WP-Total', count( $themes ) ); $response->header( 'X-WP-TotalPages', count( $themes ) ); return $response; } /** * Prepares a single theme output for response. * * @since 5.0.0 * * @param WP_Theme $theme Theme object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $theme, $request ) { $data = array(); $fields = $this->get_fields_for_response( $request ); if ( rest_is_field_included( 'stylesheet', $fields ) ) { $data['stylesheet'] = $theme->get_stylesheet(); } if ( rest_is_field_included( 'template', $fields ) ) { /** * Use the get_template() method, not the 'Template' header, for finding the template. * The 'Template' header is only good for what was written in the style.css, while * get_template() takes into account where WordPress actually located the theme and * whether it is actually valid. */ $data['template'] = $theme->get_template(); } $plain_field_mappings = array( 'requires_php' => 'RequiresPHP', 'requires_wp' => 'RequiresWP', 'textdomain' => 'TextDomain', 'version' => 'Version', ); foreach ( $plain_field_mappings as $field => $header ) { if ( rest_is_field_included( $field, $fields ) ) { $data[ $field ] = $theme->get( $header ); } } if ( rest_is_field_included( 'screenshot', $fields ) ) { // Using $theme->get_screenshot() with no args to get absolute URL. $data['screenshot'] = $theme->get_screenshot() ? $theme->get_screenshot() : ''; } $rich_field_mappings = array( 'author' => 'Author', 'author_uri' => 'AuthorURI', 'description' => 'Description', 'name' => 'Name', 'tags' => 'Tags', 'theme_uri' => 'ThemeURI', ); foreach ( $rich_field_mappings as $field => $header ) { if ( rest_is_field_included( "{$field}.raw", $fields ) ) { $data[ $field ]['raw'] = $theme->display( $header, false, true ); } if ( rest_is_field_included( "{$field}.rendered", $fields ) ) { $data[ $field ]['rendered'] = $theme->display( $header ); } } if ( rest_is_field_included( 'theme_supports', $fields ) ) { foreach ( get_registered_theme_features() as $feature => $config ) { if ( ! is_array( $config['show_in_rest'] ) ) { continue; } $name = $config['show_in_rest']['name']; if ( ! rest_is_field_included( "theme_supports.{$name}", $fields ) ) { continue; } if ( ! current_theme_supports( $feature ) ) { $data['theme_supports'][ $name ] = $config['show_in_rest']['schema']['default']; continue; } $support = get_theme_support( $feature ); if ( isset( $config['show_in_rest']['prepare_callback'] ) ) { $prepare = $config['show_in_rest']['prepare_callback']; } else { $prepare = array( $this, 'prepare_theme_support' ); } $prepared = $prepare( $support, $config, $feature, $request ); if ( is_wp_error( $prepared ) ) { continue; } $data['theme_supports'][ $name ] = $prepared; } } $data = $this->add_additional_fields_to_object( $data, $request ); // Wrap the data in a response object. $response = rest_ensure_response( $data ); /** * Filters theme data returned from the REST API. * * @since 5.0.0 * * @param WP_REST_Response $response The response object. * @param WP_Theme $theme Theme object used to create response. * @param WP_REST_Request $request Request object. */ return apply_filters( 'rest_prepare_theme', $response, $theme, $request ); } /** * Prepares the theme support value for inclusion in the REST API response. * * @since 5.5.0 * * @param mixed $support The raw value from get_theme_support(). * @param array $args The feature's registration args. * @param string $feature The feature name. * @param WP_REST_Request $request The request object. * @return mixed The prepared support value. */ protected function prepare_theme_support( $support, $args, $feature, $request ) { $schema = $args['show_in_rest']['schema']; if ( 'boolean' === $schema['type'] ) { return true; } if ( is_array( $support ) && ! $args['variadic'] ) { $support = $support[0]; } return rest_sanitize_value_from_schema( $support, $schema ); } /** * Retrieves the theme'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 = array( '$schema' => 'http://json-schema.org/draft-04/schema#', 'title' => 'theme', 'type' => 'object', 'properties' => array( 'stylesheet' => array( 'description' => __( 'The theme\'s stylesheet. This uniquely identifies the theme.' ), 'type' => 'string', 'readonly' => true, ), 'template' => array( 'description' => __( 'The theme\'s template. If this is a child theme, this refers to the parent theme, otherwise this is the same as the theme\'s stylesheet.' ), 'type' => 'string', 'readonly' => true, ), 'author' => array( 'description' => __( 'The theme author.' ), 'type' => 'object', 'readonly' => true, 'properties' => array( 'raw' => array( 'description' => __( 'The theme author\'s name, as found in the theme header.' ), 'type' => 'string', ), 'rendered' => array( 'description' => __( 'HTML for the theme author, transformed for display.' ), 'type' => 'string', ), ), ), 'author_uri' => array( 'description' => __( 'The website of the theme author.' ), 'type' => 'object', 'readonly' => true, 'properties' => array( 'raw' => array( 'description' => __( 'The website of the theme author, as found in the theme header.' ), 'type' => 'string', 'format' => 'uri', ), 'rendered' => array( 'description' => __( 'The website of the theme author, transformed for display.' ), 'type' => 'string', 'format' => 'uri', ), ), ), 'description' => array( 'description' => __( 'A description of the theme.' ), 'type' => 'object', 'readonly' => true, 'properties' => array( 'raw' => array( 'description' => __( 'The theme description, as found in the theme header.' ), 'type' => 'string', ), 'rendered' => array( 'description' => __( 'The theme description, transformed for display.' ), 'type' => 'string', ), ), ), 'name' => array( 'description' => __( 'The name of the theme.' ), 'type' => 'object', 'readonly' => true, 'properties' => array( 'raw' => array( 'description' => __( 'The theme name, as found in the theme header.' ), 'type' => 'string', ), 'rendered' => array( 'description' => __( 'The theme name, transformed for display.' ), 'type' => 'string', ), ), ), 'requires_php' => array( 'description' => __( 'The minimum PHP version required for the theme to work.' ), 'type' => 'string', 'readonly' => true, ), 'requires_wp' => array( 'description' => __( 'The minimum WordPress version required for the theme to work.' ), 'type' => 'string', 'readonly' => true, ), 'screenshot' => array( 'description' => __( 'The theme\'s screenshot URL.' ), 'type' => 'string', 'format' => 'uri', 'readonly' => true, ), 'tags' => array( 'description' => __( 'Tags indicating styles and features of the theme.' ), 'type' => 'object', 'readonly' => true, 'properties' => array( 'raw' => array( 'description' => __( 'The theme tags, as found in the theme header.' ), 'type' => 'array', 'items' => array( 'type' => 'string', ), ), 'rendered' => array( 'description' => __( 'The theme tags, transformed for display.' ), 'type' => 'string', ), ), ), 'textdomain' => array( 'description' => __( 'The theme\'s text domain.' ), 'type' => 'string', 'readonly' => true, ), 'theme_supports' => array( 'description' => __( 'Features supported by this theme.' ), 'type' => 'object', 'readonly' => true, 'properties' => array(), ), 'theme_uri' => array( 'description' => __( 'The URI of the theme\'s webpage.' ), 'type' => 'object', 'readonly' => true, 'properties' => array( 'raw' => array( 'description' => __( 'The URI of the theme\'s webpage, as found in the theme header.' ), 'type' => 'string', 'format' => 'uri', ), 'rendered' => array( 'description' => __( 'The URI of the theme\'s webpage, transformed for display.' ), 'type' => 'string', 'format' => 'uri', ), ), ), 'version' => array( 'description' => __( 'The theme\'s current version.' ), 'type' => 'string', 'readonly' => true, ), ), ); foreach ( get_registered_theme_features() as $feature => $config ) { if ( ! is_array( $config['show_in_rest'] ) ) { continue; } $name = $config['show_in_rest']['name']; $schema['properties']['theme_supports']['properties'][ $name ] = $config['show_in_rest']['schema']; } $this->schema = $schema; return $this->add_additional_fields_schema( $this->schema ); } /** * Retrieves the search params for the themes collection. * * @since 5.0.0 * * @return array Collection parameters. */ public function get_collection_params() { $query_params = parent::get_collection_params(); $query_params['status'] = array( 'description' => __( 'Limit result set to themes assigned one or more statuses.' ), 'type' => 'array', 'items' => array( 'enum' => array( 'active' ), 'type' => 'string', ), 'required' => true, 'sanitize_callback' => array( $this, 'sanitize_theme_status' ), ); /** * Filter collection parameters for the themes controller. * * @since 5.0.0 * * @param array $query_params JSON Schema-formatted collection parameters. */ return apply_filters( 'rest_themes_collection_params', $query_params ); } /** * Sanitizes and validates the list of theme status. * * @since 5.0.0 * * @param string|array $statuses One or more theme statuses. * @param WP_REST_Request $request Full details about the request. * @param string $parameter Additional parameter to pass to validation. * @return array|WP_Error A list of valid statuses, otherwise WP_Error object. */ public function sanitize_theme_status( $statuses, $request, $parameter ) { $statuses = wp_parse_slug_list( $statuses ); foreach ( $statuses as $status ) { $result = rest_validate_request_arg( $status, $request, $parameter ); if ( is_wp_error( $result ) ) { return $result; } } return $statuses; } } endpoints/class-wp-rest-users-controller.php 0000644 00000131742 15213254037 0015316 0 ustar 00 <?php /** * REST API: WP_REST_Users_Controller class * * @package WordPress * @subpackage REST_API * @since 4.7.0 */ /** * Core class used to manage users via the REST API. * * @since 4.7.0 * * @see WP_REST_Controller */ class WP_REST_Users_Controller extends WP_REST_Controller { /** * Instance of a user meta fields object. * * @since 4.7.0 * @var WP_REST_User_Meta_Fields */ protected $meta; /** * 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 the objects of the controller. * * @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 ), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\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' ), ), ), ), '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() ) ); } 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 * * @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', '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( $prepared_args['search'] ) ) { if ( ! current_user_can( 'list_users' ) ) { $prepared_args['search_columns'] = array( 'ID', 'user_login', 'user_nicename', 'display_name' ); } $prepared_args['search'] = '*' . $prepared_args['search'] . '*'; } /** * 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 current request. */ $prepared_args = apply_filters( 'rest_user_query', $prepared_args, $request ); $query = new WP_User_Query( $prepared_args ); $users = array(); foreach ( $query->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 = rest_ensure_response( $users ); // Store pagination values for headers then unset for count query. $per_page = (int) $prepared_args['number']; $page = 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 again without LIMIT for total count. unset( $prepared_args['number'], $prepared_args['offset'] ); $count_query = new WP_User_Query( $prepared_args ); $total_users = $count_query->get_total(); } $response->header( 'X-WP-Total', (int) $total_users ); $max_pages = ceil( $total_users / $per_page ); $response->header( 'X-WP-TotalPages', (int) $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; if ( ! $user ) { return new WP_Error( 'rest_user_invalid_id', __( 'Invalid user ID.' ), array( 'status' => 404 ) ); } $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 isn't 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 * * @param WP_User $user User object. * @param WP_REST_Request $request Request object. * @return WP_REST_Response Response object. */ public function prepare_item_for_response( $user, $request ) { $data = array(); $fields = $this->get_fields_for_response( $request ); 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 ); $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_Post $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 * * @param integer $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( $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 ( false !== strpos( $password, '\\' ) ) { return new WP_Error( 'rest_user_invalid_password', __( 'Passwords cannot contain the "\\" 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 object 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['who'] = array( 'description' => __( 'Limit result set to users who are considered authors.' ), 'type' => 'string', 'enum' => array( 'authors', ), ); /** * Filter 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 ); } } endpoints/error_log 0000644 00065667026 15213254037 0010522 0 ustar 00 [14-Jul-2022 12:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jul-2022 12:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jul-2022 12:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jul-2022 12:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jul-2022 12:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jul-2022 12:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jul-2022 12:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jul-2022 12:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jul-2022 12:34:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jul-2022 12:34:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jul-2022 12:34:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jul-2022 12:34:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jul-2022 12:34:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jul-2022 12:34:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jul-2022 12:35:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jul-2022 12:35:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jul-2022 12:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jul-2022 12:35:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Jul-2022 10:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jul-2022 10:45:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Jul-2022 10:45:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Jul-2022 10:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Jul-2022 10:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Jul-2022 10:47:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Jul-2022 10:48:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Jul-2022 10:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Jul-2022 10:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Jul-2022 10:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Jul-2022 10:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Jul-2022 10:50:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Jul-2022 10:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Jul-2022 10:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Jul-2022 10:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Jul-2022 10:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Jul-2022 10:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Jul-2022 10:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jul-2022 18:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jul-2022 18:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jul-2022 18:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jul-2022 18:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jul-2022 18:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jul-2022 18:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jul-2022 18:24:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jul-2022 18:24:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jul-2022 18:24:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jul-2022 18:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jul-2022 18:25:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jul-2022 18:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jul-2022 18:26:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jul-2022 18:26:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jul-2022 18:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jul-2022 18:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jul-2022 18:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jul-2022 18:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jul-2022 19:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jul-2022 19:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jul-2022 19:42:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jul-2022 19:42:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jul-2022 19:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jul-2022 19:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jul-2022 19:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jul-2022 19:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jul-2022 19:44:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jul-2022 19:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jul-2022 19:44:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jul-2022 19:45:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jul-2022 19:45:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jul-2022 19:45:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jul-2022 19:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jul-2022 19:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jul-2022 19:46:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jul-2022 19:46:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Jul-2022 23:38:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Jul-2022 23:38:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Jul-2022 23:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Jul-2022 23:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Jul-2022 23:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Jul-2022 23:39:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Jul-2022 23:39:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Jul-2022 23:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Jul-2022 23:39:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Jul-2022 23:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Jul-2022 23:39:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Jul-2022 23:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Jul-2022 23:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Jul-2022 23:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Jul-2022 23:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Jul-2022 23:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Jul-2022 23:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Jul-2022 23:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2022 22:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2022 22:37:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2022 22:37:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2022 22:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2022 22:37:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2022 22:38:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2022 22:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2022 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2022 22:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2022 22:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2022 22:38:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2022 22:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2022 22:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2022 22:38:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2022 22:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2022 22:38:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2022 22:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2022 22:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2022 23:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2022 23:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2022 23:03:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2022 23:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2022 23:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2022 23:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2022 23:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2022 23:04:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2022 23:04:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2022 23:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2022 23:04:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2022 23:04:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2022 23:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2022 23:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2022 23:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2022 23:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2022 23:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2022 23:04:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jul-2022 15:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jul-2022 15:17:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jul-2022 15:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jul-2022 15:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jul-2022 15:18:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jul-2022 15:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jul-2022 15:19:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jul-2022 15:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jul-2022 15:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jul-2022 15:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jul-2022 15:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jul-2022 15:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jul-2022 15:22:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jul-2022 15:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jul-2022 15:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jul-2022 15:23:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jul-2022 15:24:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jul-2022 15:24:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jul-2022 16:43:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jul-2022 16:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jul-2022 16:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jul-2022 16:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jul-2022 16:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jul-2022 16:45:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jul-2022 16:46:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jul-2022 16:47:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jul-2022 16:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jul-2022 16:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jul-2022 16:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jul-2022 16:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jul-2022 16:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jul-2022 16:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jul-2022 16:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jul-2022 16:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jul-2022 16:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jul-2022 16:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Jul-2022 05:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Jul-2022 05:58:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Jul-2022 05:58:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Jul-2022 05:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Jul-2022 05:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Jul-2022 06:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Jul-2022 06:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Jul-2022 06:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Jul-2022 06:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Jul-2022 06:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Jul-2022 06:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Jul-2022 06:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Jul-2022 06:04:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Jul-2022 06:04:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Jul-2022 06:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Jul-2022 06:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Jul-2022 06:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Jul-2022 06:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Jul-2022 07:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Jul-2022 07:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Jul-2022 07:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Jul-2022 07:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Jul-2022 07:32:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Jul-2022 07:33:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Jul-2022 07:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Jul-2022 07:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Jul-2022 07:34:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Jul-2022 07:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Jul-2022 07:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Jul-2022 07:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Jul-2022 07:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Jul-2022 07:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Jul-2022 07:37:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Jul-2022 07:37:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Jul-2022 07:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Jul-2022 07:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2022 15:06:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2022 15:06:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2022 15:06:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2022 15:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2022 15:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2022 15:06:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2022 15:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2022 15:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2022 15:06:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2022 15:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2022 15:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2022 15:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2022 15:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2022 15:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2022 15:07:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2022 15:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2022 15:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2022 15:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2022 15:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2022 15:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2022 15:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2022 15:12:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2022 15:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2022 15:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2022 15:12:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2022 15:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2022 15:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2022 15:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2022 15:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2022 15:13:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2022 15:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2022 15:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2022 15:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2022 15:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2022 15:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2022 15:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2022 15:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2022 15:40:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2022 15:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2022 15:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2022 15:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2022 15:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2022 15:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2022 15:41:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2022 15:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2022 15:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2022 15:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2022 15:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2022 15:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2022 15:41:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2022 15:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2022 15:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2022 15:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2022 15:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2022 15:46:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2022 15:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2022 15:47:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2022 15:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2022 15:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2022 15:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2022 15:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2022 15:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2022 15:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2022 15:47:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2022 15:47:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2022 15:47:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2022 15:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2022 15:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2022 15:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2022 15:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2022 15:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2022 15:48:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2022 03:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2022 03:02:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2022 03:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2022 03:02:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2022 03:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2022 03:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2022 03:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2022 03:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2022 03:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2022 03:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2022 03:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2022 03:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2022 03:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2022 03:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2022 03:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2022 03:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2022 03:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2022 03:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2022 03:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2022 03:36:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2022 03:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2022 03:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2022 03:37:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2022 03:37:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2022 03:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2022 03:37:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2022 03:37:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2022 03:37:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2022 03:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2022 03:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2022 03:37:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2022 03:37:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2022 03:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2022 03:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2022 03:38:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2022 03:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Oct-2022 06:17:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Oct-2022 06:17:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Oct-2022 06:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Oct-2022 06:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Oct-2022 06:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Oct-2022 06:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Oct-2022 06:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Oct-2022 06:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Oct-2022 06:18:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Oct-2022 06:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Oct-2022 06:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Oct-2022 06:18:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Oct-2022 06:18:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Oct-2022 06:18:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Oct-2022 06:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Oct-2022 06:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Oct-2022 06:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Oct-2022 06:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Nov-2022 18:45:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Nov-2022 18:45:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Nov-2022 18:46:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Nov-2022 18:46:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Nov-2022 18:46:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Nov-2022 18:46:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Nov-2022 18:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Nov-2022 18:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Nov-2022 18:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Nov-2022 18:46:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Nov-2022 18:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Nov-2022 18:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Nov-2022 18:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Nov-2022 18:46:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Nov-2022 18:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Nov-2022 18:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Nov-2022 18:47:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Nov-2022 18:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Nov-2022 05:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Nov-2022 05:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Nov-2022 12:28:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Nov-2022 12:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Nov-2022 12:38:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2022 05:19:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2022 05:19:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2022 05:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2022 05:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2022 05:20:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2022 05:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2022 05:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2022 05:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2022 05:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2022 05:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2022 05:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2022 05:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2022 05:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2022 05:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2022 05:21:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2022 05:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2022 05:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2022 05:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2023 16:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2023 16:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2023 16:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2023 16:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2023 16:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2023 17:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2023 17:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2023 17:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2023 17:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2023 17:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2023 17:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2023 17:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2023 17:03:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2023 17:04:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2023 17:04:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2023 17:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2023 17:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2023 17:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2023 22:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2023 22:03:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2023 22:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2023 22:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2023 22:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2023 22:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2023 22:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2023 22:06:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2023 22:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2023 22:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2023 22:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2023 22:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2023 22:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2023 22:08:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2023 22:09:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2023 22:09:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2023 22:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2023 22:10:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2023 03:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2023 03:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2023 03:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2023 03:38:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2023 03:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2023 03:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2023 03:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2023 03:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2023 03:41:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2023 03:41:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2023 03:42:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2023 03:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2023 03:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2023 03:43:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2023 03:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2023 03:44:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2023 03:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2023 03:45:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2023 05:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2023 05:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2023 05:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2023 05:08:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2023 05:09:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2023 05:09:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2023 05:09:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2023 05:10:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2023 05:11:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2023 05:11:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2023 05:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2023 05:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2023 05:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2023 05:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2023 05:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2023 05:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2023 05:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2023 05:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2023 08:47:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2023 08:48:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2023 08:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2023 08:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2023 08:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2023 08:49:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2023 08:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2023 08:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2023 08:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2023 08:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2023 08:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2023 08:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2023 08:53:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2023 08:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2023 08:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2023 08:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2023 08:55:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2023 08:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2023 15:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2023 15:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2023 15:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2023 15:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2023 15:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2023 15:32:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2023 15:33:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2023 15:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2023 15:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2023 15:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2023 15:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2023 15:35:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2023 15:35:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2023 15:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2023 15:36:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2023 15:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2023 15:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2023 15:37:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2023 16:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2023 16:19:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2023 16:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2023 16:19:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2023 16:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2023 16:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2023 16:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2023 16:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2023 16:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2023 16:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2023 16:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2023 16:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2023 16:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2023 16:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2023 16:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2023 16:23:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2023 16:24:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2023 16:24:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2023 20:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2023 20:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2023 20:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2023 20:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2023 20:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2023 20:30:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2023 20:30:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2023 20:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2023 20:30:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2023 20:30:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2023 20:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2023 20:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2023 20:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2023 20:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2023 20:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2023 20:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2023 20:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2023 20:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Jan-2023 17:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Jan-2023 17:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Jan-2023 17:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Jan-2023 17:23:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Jan-2023 17:24:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Jan-2023 17:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Jan-2023 17:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Jan-2023 17:25:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Jan-2023 17:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Jan-2023 17:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Jan-2023 17:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Jan-2023 17:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Jan-2023 17:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Jan-2023 17:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Jan-2023 17:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Jan-2023 17:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Jan-2023 17:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Jan-2023 17:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2023 02:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2023 02:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2023 02:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2023 02:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2023 02:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2023 02:53:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2023 02:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2023 02:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2023 02:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2023 02:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2023 02:55:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2023 02:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2023 02:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2023 02:56:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2023 02:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2023 02:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2023 02:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2023 02:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jan-2023 20:17:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Mar-2023 16:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Mar-2023 16:43:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Mar-2023 16:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Mar-2023 16:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Mar-2023 16:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Mar-2023 16:44:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Mar-2023 16:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Mar-2023 16:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Mar-2023 16:44:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Mar-2023 16:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Mar-2023 16:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Mar-2023 16:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Mar-2023 16:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Mar-2023 16:45:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Mar-2023 16:45:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Mar-2023 16:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Mar-2023 16:45:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Mar-2023 16:46:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2023 13:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2023 13:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2023 13:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2023 13:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2023 13:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2023 13:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2023 13:58:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2023 13:58:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2023 13:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2023 13:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2023 13:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2023 13:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2023 13:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2023 13:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2023 13:58:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2023 13:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2023 13:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2023 13:59:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Apr-2023 05:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Apr-2023 05:54:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Apr-2023 05:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Apr-2023 05:54:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Apr-2023 05:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Apr-2023 05:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Apr-2023 05:55:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Apr-2023 05:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Apr-2023 05:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Apr-2023 05:55:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Apr-2023 05:55:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Apr-2023 05:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Apr-2023 05:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Apr-2023 05:55:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Apr-2023 05:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Apr-2023 05:55:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Apr-2023 05:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Apr-2023 05:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Apr-2023 07:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Apr-2023 07:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Apr-2023 07:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Apr-2023 07:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Apr-2023 07:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Apr-2023 07:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Apr-2023 07:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Apr-2023 07:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Apr-2023 07:56:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Apr-2023 07:56:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Apr-2023 07:57:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Apr-2023 07:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Apr-2023 07:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Apr-2023 07:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Apr-2023 07:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Apr-2023 07:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Apr-2023 07:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Apr-2023 07:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-May-2023 20:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-May-2023 20:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-May-2023 20:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-May-2023 20:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-May-2023 20:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-May-2023 20:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-May-2023 20:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-May-2023 20:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-May-2023 20:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-May-2023 20:31:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-May-2023 20:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-May-2023 20:31:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-May-2023 20:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-May-2023 20:31:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-May-2023 20:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-May-2023 20:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-May-2023 20:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-May-2023 20:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-May-2023 22:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-May-2023 22:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-May-2023 22:15:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-May-2023 22:15:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-May-2023 22:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-May-2023 22:15:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-May-2023 22:15:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-May-2023 22:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-May-2023 22:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-May-2023 22:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-May-2023 22:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-May-2023 22:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-May-2023 22:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-May-2023 22:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-May-2023 22:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-May-2023 22:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-May-2023 22:17:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-May-2023 22:17:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-May-2023 22:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-May-2023 22:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-May-2023 22:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-May-2023 22:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-May-2023 22:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-May-2023 22:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-May-2023 22:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-May-2023 22:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-May-2023 22:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-May-2023 22:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-May-2023 22:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-May-2023 22:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-May-2023 22:18:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-May-2023 22:18:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-May-2023 22:18:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-May-2023 22:19:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-May-2023 22:19:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-May-2023 22:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-May-2023 20:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-May-2023 20:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-May-2023 20:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-May-2023 20:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-May-2023 20:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-May-2023 20:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-May-2023 20:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-May-2023 20:21:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-May-2023 20:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-May-2023 20:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-May-2023 20:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-May-2023 20:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-May-2023 20:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-May-2023 20:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-May-2023 20:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-May-2023 20:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-May-2023 20:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-May-2023 20:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-May-2023 20:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-May-2023 20:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-May-2023 20:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-May-2023 20:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-May-2023 20:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-May-2023 20:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-May-2023 20:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-May-2023 20:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-May-2023 20:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-May-2023 20:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-May-2023 20:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-May-2023 20:23:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-May-2023 20:23:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-May-2023 20:23:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-May-2023 20:24:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-May-2023 20:24:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-May-2023 20:24:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-May-2023 20:24:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jun-2023 01:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jun-2023 01:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jun-2023 01:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jun-2023 01:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jun-2023 01:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jun-2023 01:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jun-2023 01:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jun-2023 01:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jun-2023 01:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jun-2023 01:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jun-2023 01:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jun-2023 01:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jun-2023 01:36:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jun-2023 01:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jun-2023 01:37:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jun-2023 01:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jun-2023 01:37:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jun-2023 01:37:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jun-2023 01:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jun-2023 01:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jun-2023 01:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jun-2023 01:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jun-2023 01:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jun-2023 01:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jun-2023 01:38:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jun-2023 01:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jun-2023 01:39:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jun-2023 01:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jun-2023 01:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jun-2023 01:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jun-2023 01:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jun-2023 01:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jun-2023 01:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jun-2023 01:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jun-2023 01:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jun-2023 01:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jun-2023 01:41:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jun-2023 01:41:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jun-2023 01:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jun-2023 01:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jun-2023 01:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jun-2023 01:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jun-2023 01:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jun-2023 01:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jun-2023 01:42:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jun-2023 01:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jun-2023 01:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jun-2023 01:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jun-2023 01:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jun-2023 01:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jun-2023 01:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jun-2023 01:43:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jun-2023 01:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jun-2023 01:43:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jun-2023 01:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jun-2023 01:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jun-2023 01:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jun-2023 01:43:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jun-2023 01:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jun-2023 01:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jun-2023 01:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jun-2023 01:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jun-2023 01:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jun-2023 01:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jun-2023 01:44:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jun-2023 01:44:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jun-2023 01:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jun-2023 01:44:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jun-2023 01:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jun-2023 01:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jun-2023 01:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jun-2023 01:45:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jun-2023 19:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jun-2023 19:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jun-2023 19:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jun-2023 19:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jun-2023 19:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jun-2023 19:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jun-2023 19:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jun-2023 19:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jun-2023 19:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jun-2023 19:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jun-2023 19:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jun-2023 19:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jun-2023 19:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jun-2023 19:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jun-2023 19:23:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jun-2023 19:23:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jun-2023 19:24:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jun-2023 19:24:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jun-2023 19:24:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jun-2023 19:24:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jun-2023 19:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jun-2023 19:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jun-2023 19:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jun-2023 19:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jun-2023 19:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jun-2023 19:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jun-2023 19:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jun-2023 19:25:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jun-2023 19:25:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jun-2023 19:25:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jun-2023 19:25:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jun-2023 19:25:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jun-2023 19:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jun-2023 19:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jun-2023 19:26:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jun-2023 19:26:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jun-2023 19:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jun-2023 19:28:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jun-2023 19:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jun-2023 19:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jun-2023 19:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jun-2023 19:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jun-2023 19:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jun-2023 19:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jun-2023 19:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jun-2023 19:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jun-2023 19:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jun-2023 19:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jun-2023 19:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jun-2023 19:30:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jun-2023 19:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jun-2023 19:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jun-2023 19:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jun-2023 19:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jun-2023 19:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jun-2023 19:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jun-2023 19:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jun-2023 19:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jun-2023 19:31:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jun-2023 19:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jun-2023 19:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jun-2023 19:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jun-2023 19:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jun-2023 19:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jun-2023 19:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jun-2023 19:32:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jun-2023 19:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jun-2023 19:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jun-2023 19:32:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jun-2023 19:32:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jun-2023 19:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jun-2023 19:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2023 00:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2023 00:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2023 00:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2023 00:40:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2023 00:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2023 00:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2023 00:41:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2023 00:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2023 00:41:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2023 00:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2023 00:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2023 00:41:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2023 00:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2023 00:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2023 00:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2023 00:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2023 00:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2023 00:41:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2023 01:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2023 01:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2023 01:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2023 01:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2023 01:06:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2023 01:07:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2023 01:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2023 01:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2023 01:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2023 01:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2023 01:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2023 01:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2023 01:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2023 01:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2023 01:07:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2023 01:07:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2023 01:07:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2023 01:07:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2023 03:24:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2023 03:24:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2023 03:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2023 03:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2023 03:24:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2023 03:24:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2023 03:24:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2023 03:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2023 03:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2023 03:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2023 03:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2023 03:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2023 03:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2023 03:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2023 03:25:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2023 03:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2023 03:26:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2023 03:26:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2023 03:26:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2023 03:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2023 03:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2023 03:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2023 03:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2023 03:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2023 03:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2023 03:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2023 03:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2023 03:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2023 03:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2023 03:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2023 03:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2023 03:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2023 03:27:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2023 03:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2023 03:28:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2023 03:28:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2023 03:29:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2023 03:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2023 03:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2023 03:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2023 03:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2023 03:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2023 03:30:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2023 03:30:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2023 03:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2023 03:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2023 03:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2023 03:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2023 03:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2023 03:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2023 03:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2023 03:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2023 03:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2023 03:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2023 03:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2023 03:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2023 03:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2023 03:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2023 03:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2023 03:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2023 03:32:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2023 03:32:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2023 03:32:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2023 03:32:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2023 03:32:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2023 03:32:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2023 03:32:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2023 03:32:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2023 03:32:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2023 03:32:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2023 03:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2023 03:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2023 03:17:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2023 03:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2023 03:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2023 03:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2023 03:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2023 03:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2023 03:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2023 03:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2023 03:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2023 03:17:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2023 03:17:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2023 03:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2023 03:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2023 03:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2023 03:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2023 03:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2023 03:17:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2023 03:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2023 03:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2023 03:17:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2023 03:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2023 03:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2023 03:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2023 03:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2023 03:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2023 03:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2023 03:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2023 03:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2023 03:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2023 03:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2023 03:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2023 03:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2023 03:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2023 03:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2023 03:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2023 03:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2023 03:18:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2023 03:18:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2023 03:18:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2023 03:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2023 03:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2023 03:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2023 03:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2023 03:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2023 03:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2023 03:18:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2023 03:18:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2023 03:18:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2023 03:18:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2023 03:18:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2023 03:18:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2023 03:18:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2023 03:18:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2023 03:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2023 03:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2023 03:18:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2023 03:18:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2023 03:18:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2023 03:18:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2023 03:18:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2023 03:18:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2023 03:18:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2023 03:18:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2023 03:18:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2023 03:18:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2023 03:18:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2023 03:18:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2023 03:19:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2023 03:19:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2023 03:19:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2023 03:19:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2023 03:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2023 17:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2023 17:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2023 17:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2023 17:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2023 17:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2023 17:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2023 17:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2023 17:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2023 17:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2023 17:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2023 17:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2023 17:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2023 17:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2023 17:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2023 17:01:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2023 17:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2023 17:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2023 17:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2023 17:01:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2023 17:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2023 17:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2023 17:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2023 17:02:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2023 17:02:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2023 17:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2023 17:02:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2023 17:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2023 17:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2023 17:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2023 17:02:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2023 17:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2023 17:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2023 17:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2023 17:02:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2023 17:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2023 17:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2023 17:04:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2023 17:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2023 17:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2023 17:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2023 17:04:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2023 17:04:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2023 17:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2023 17:05:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2023 17:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2023 17:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2023 17:05:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2023 17:05:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2023 17:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2023 17:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2023 17:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2023 17:05:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2023 17:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2023 17:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2023 17:05:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2023 17:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2023 17:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2023 17:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2023 17:06:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2023 17:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2023 17:06:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2023 17:06:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2023 17:06:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2023 17:06:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2023 17:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2023 17:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2023 17:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2023 17:06:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2023 12:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2023 12:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2023 12:16:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2023 12:16:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2023 12:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2023 12:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2023 12:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2023 12:16:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2023 12:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2023 12:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2023 12:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2023 12:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2023 12:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2023 12:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2023 12:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2023 12:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2023 12:17:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2023 12:17:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2023 15:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2023 15:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2023 15:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2023 15:03:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2023 15:03:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2023 15:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2023 15:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2023 17:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2023 17:35:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2023 17:35:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2023 17:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2023 17:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2023 17:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2023 17:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2023 17:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2023 17:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2023 17:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2023 17:35:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2023 17:35:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2023 17:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2023 17:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2023 17:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2023 17:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2023 17:36:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2023 17:36:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2023 18:41:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2023 18:41:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2023 18:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2023 18:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2023 18:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2023 18:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2023 18:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2023 18:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2023 18:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2023 18:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2023 18:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2023 18:42:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2023 18:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2023 18:42:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2023 18:42:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2023 18:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2023 18:42:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2023 18:42:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2023 18:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2023 18:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2023 18:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2023 18:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2023 18:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2023 18:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2023 18:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2023 18:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2023 18:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2023 18:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2023 18:34:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2023 18:34:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2023 18:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2023 18:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2023 18:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2023 18:34:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2023 18:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2023 18:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2023 20:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2023 20:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2023 20:11:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2023 20:11:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2023 20:11:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2023 20:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2023 20:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2023 20:11:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2023 20:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2023 20:11:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2023 20:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2023 20:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2023 20:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2023 20:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2023 20:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2023 20:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2023 20:11:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2023 20:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Aug-2023 07:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2023 07:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2023 07:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2023 07:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2023 07:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2023 07:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2023 07:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2023 07:00:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2023 07:00:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2023 07:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Aug-2023 07:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Aug-2023 07:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Aug-2023 07:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Aug-2023 07:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Aug-2023 07:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Aug-2023 07:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Aug-2023 07:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Aug-2023 07:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Aug-2023 10:28:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2023 10:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2023 10:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2023 10:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2023 10:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2023 10:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2023 10:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2023 10:28:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2023 10:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2023 10:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Aug-2023 10:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Aug-2023 10:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Aug-2023 10:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Aug-2023 10:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Aug-2023 10:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Aug-2023 10:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Aug-2023 10:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Aug-2023 10:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Aug-2023 14:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2023 14:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2023 14:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2023 14:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2023 14:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2023 14:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2023 14:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2023 14:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2023 14:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2023 14:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Aug-2023 14:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Aug-2023 14:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Aug-2023 14:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Aug-2023 14:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Aug-2023 14:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Aug-2023 14:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Aug-2023 14:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Aug-2023 14:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2023 17:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2023 17:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2023 17:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2023 17:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2023 17:04:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2023 17:04:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2023 17:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2023 17:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2023 17:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2023 17:04:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2023 17:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2023 17:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2023 17:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2023 17:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2023 17:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2023 17:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2023 17:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2023 17:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2023 21:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2023 21:41:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2023 21:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2023 21:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2023 21:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2023 21:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2023 21:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2023 21:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2023 21:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2023 21:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2023 21:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2023 21:42:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2023 21:42:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2023 21:42:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2023 21:42:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2023 21:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2023 21:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2023 21:42:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Sep-2023 02:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Sep-2023 02:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Sep-2023 02:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Sep-2023 02:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Sep-2023 02:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Sep-2023 02:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Sep-2023 02:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Sep-2023 02:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Sep-2023 02:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Sep-2023 02:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Sep-2023 02:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Sep-2023 02:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Sep-2023 02:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Sep-2023 02:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Sep-2023 02:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Sep-2023 02:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Sep-2023 02:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Sep-2023 02:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Sep-2023 21:36:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Sep-2023 21:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Sep-2023 21:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Sep-2023 21:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Sep-2023 21:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Sep-2023 21:36:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Sep-2023 21:36:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Sep-2023 21:36:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Sep-2023 21:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Sep-2023 21:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Sep-2023 21:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Sep-2023 21:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Sep-2023 21:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Sep-2023 21:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Sep-2023 21:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Sep-2023 21:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Sep-2023 21:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Sep-2023 21:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Sep-2023 11:01:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Sep-2023 11:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Sep-2023 11:01:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Sep-2023 11:01:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Sep-2023 11:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Sep-2023 11:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Sep-2023 11:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Sep-2023 11:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Sep-2023 11:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Sep-2023 11:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Sep-2023 11:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Sep-2023 11:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Sep-2023 11:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Sep-2023 11:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Sep-2023 11:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Sep-2023 11:02:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Sep-2023 11:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Sep-2023 11:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Sep-2023 19:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Sep-2023 19:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Sep-2023 19:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Sep-2023 19:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Sep-2023 19:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Sep-2023 19:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Sep-2023 19:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Sep-2023 19:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Sep-2023 19:45:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Sep-2023 19:45:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Sep-2023 19:45:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Sep-2023 19:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Sep-2023 19:45:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Sep-2023 19:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Sep-2023 19:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Sep-2023 19:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Sep-2023 19:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Sep-2023 19:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Sep-2023 20:44:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Sep-2023 20:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Sep-2023 20:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Sep-2023 20:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Sep-2023 20:45:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Sep-2023 20:45:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Sep-2023 20:45:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Sep-2023 20:45:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Sep-2023 20:45:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Sep-2023 20:45:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Sep-2023 20:45:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Sep-2023 20:46:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Sep-2023 20:46:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Sep-2023 20:46:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Sep-2023 20:46:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Sep-2023 20:46:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Sep-2023 20:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Sep-2023 20:46:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Sep-2023 09:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Sep-2023 09:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Sep-2023 09:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Sep-2023 09:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Sep-2023 09:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Sep-2023 09:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Sep-2023 09:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Sep-2023 09:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Sep-2023 09:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Sep-2023 09:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Sep-2023 09:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Sep-2023 09:53:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Sep-2023 09:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Sep-2023 09:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Sep-2023 09:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Sep-2023 09:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Sep-2023 09:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Sep-2023 09:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Sep-2023 05:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Sep-2023 05:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Sep-2023 05:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Sep-2023 05:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Sep-2023 05:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Sep-2023 05:12:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Sep-2023 05:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Sep-2023 05:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Sep-2023 05:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Sep-2023 05:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Sep-2023 05:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Sep-2023 05:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Sep-2023 05:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Sep-2023 05:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Sep-2023 05:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Sep-2023 05:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Sep-2023 05:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Sep-2023 05:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Sep-2023 07:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Sep-2023 07:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Sep-2023 07:58:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Sep-2023 07:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Sep-2023 07:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Sep-2023 07:58:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Sep-2023 07:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Sep-2023 07:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Sep-2023 07:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Sep-2023 07:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Sep-2023 07:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Sep-2023 07:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Sep-2023 07:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Sep-2023 07:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Sep-2023 07:59:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Sep-2023 07:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Sep-2023 07:59:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Sep-2023 08:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2023 07:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2023 07:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2023 07:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2023 07:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2023 07:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2023 07:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2023 07:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2023 07:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2023 07:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2023 07:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2023 07:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2023 07:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2023 07:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2023 07:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2023 07:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2023 07:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2023 07:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2023 07:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2023 12:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2023 12:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2023 12:23:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2023 12:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2023 12:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2023 12:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2023 12:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2023 12:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2023 12:23:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2023 12:23:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2023 12:23:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2023 12:23:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2023 12:23:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2023 12:23:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2023 12:23:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2023 12:23:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2023 12:23:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2023 12:24:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2023 13:22:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2023 13:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2023 13:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2023 13:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2023 13:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2023 13:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2023 13:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2023 13:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2023 13:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2023 13:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2023 13:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2023 13:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2023 13:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2023 13:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2023 13:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2023 13:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2023 13:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2023 13:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Sep-2023 21:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Sep-2023 21:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Sep-2023 21:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Sep-2023 21:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Sep-2023 21:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Sep-2023 21:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Sep-2023 21:33:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Sep-2023 21:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Sep-2023 21:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Sep-2023 21:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Sep-2023 21:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Sep-2023 21:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Sep-2023 21:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Sep-2023 21:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Sep-2023 21:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Sep-2023 21:34:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Sep-2023 21:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Sep-2023 21:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Sep-2023 08:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Sep-2023 08:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Sep-2023 08:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Sep-2023 08:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Sep-2023 08:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Sep-2023 08:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Sep-2023 08:16:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Sep-2023 08:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Sep-2023 08:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Sep-2023 08:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Sep-2023 08:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Sep-2023 08:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Sep-2023 08:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Sep-2023 08:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Sep-2023 08:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Sep-2023 08:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Sep-2023 08:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Sep-2023 08:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Sep-2023 00:35:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Sep-2023 00:35:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Sep-2023 00:35:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Sep-2023 00:35:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Sep-2023 00:35:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Sep-2023 00:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Sep-2023 00:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Sep-2023 00:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Sep-2023 00:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Sep-2023 00:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Sep-2023 00:35:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Sep-2023 00:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Sep-2023 00:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Sep-2023 00:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Sep-2023 00:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Sep-2023 00:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Sep-2023 00:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Sep-2023 00:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Sep-2023 00:35:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Sep-2023 00:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Sep-2023 00:35:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Sep-2023 00:35:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Sep-2023 00:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Sep-2023 00:36:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Sep-2023 00:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Sep-2023 00:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Sep-2023 00:36:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Sep-2023 00:36:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Sep-2023 00:36:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Sep-2023 00:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Sep-2023 00:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Sep-2023 00:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Sep-2023 00:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Sep-2023 00:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Sep-2023 00:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Sep-2023 00:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2023 04:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2023 04:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2023 04:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2023 04:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2023 04:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2023 04:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2023 04:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2023 04:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2023 04:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2023 04:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2023 04:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2023 04:59:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2023 05:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2023 05:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2023 05:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2023 05:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2023 05:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2023 05:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2023 05:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2023 05:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2023 05:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2023 05:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2023 05:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2023 05:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2023 05:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2023 05:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2023 05:02:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2023 05:02:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2023 05:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2023 05:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2023 05:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2023 05:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2023 05:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2023 05:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2023 05:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2023 05:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2023 05:06:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2023 05:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2023 05:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2023 05:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2023 05:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2023 05:07:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2023 05:07:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2023 05:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2023 05:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2023 05:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2023 05:08:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2023 05:08:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2023 05:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2023 05:08:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2023 05:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2023 05:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2023 05:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2023 05:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2023 05:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2023 05:09:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2023 05:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2023 05:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2023 05:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2023 05:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2023 05:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2023 05:10:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2023 05:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2023 05:11:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2023 05:11:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2023 05:11:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2023 05:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2023 05:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2023 05:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2023 05:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2023 05:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2023 05:12:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Oct-2023 18:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Oct-2023 18:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Oct-2023 18:34:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Oct-2023 18:34:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Oct-2023 18:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Oct-2023 18:34:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Oct-2023 18:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Oct-2023 18:34:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Oct-2023 18:34:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Oct-2023 18:34:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Oct-2023 18:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Oct-2023 18:35:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Oct-2023 18:35:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Oct-2023 18:35:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Oct-2023 18:35:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Oct-2023 18:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Oct-2023 18:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Oct-2023 18:35:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Oct-2023 03:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Oct-2023 03:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Oct-2023 03:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Oct-2023 03:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Oct-2023 03:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Oct-2023 03:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Oct-2023 03:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Oct-2023 03:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Oct-2023 03:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Oct-2023 03:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Oct-2023 03:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Oct-2023 03:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Oct-2023 03:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Oct-2023 03:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Oct-2023 03:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Oct-2023 03:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Oct-2023 03:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Oct-2023 03:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2023 18:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2023 18:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2023 18:39:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2023 18:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2023 18:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2023 18:40:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2023 18:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2023 18:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2023 18:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2023 18:40:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2023 18:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2023 18:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2023 18:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2023 18:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2023 18:41:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2023 18:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2023 18:41:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2023 18:41:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2023 08:41:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Nov-2023 19:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Nov-2023 19:06:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Nov-2023 19:06:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Nov-2023 19:06:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Nov-2023 19:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Nov-2023 19:06:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Nov-2023 19:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Nov-2023 19:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Nov-2023 19:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Nov-2023 19:06:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Nov-2023 19:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Nov-2023 19:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Nov-2023 19:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Nov-2023 19:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Nov-2023 19:07:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Nov-2023 19:07:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Nov-2023 19:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Nov-2023 19:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Nov-2023 06:37:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Nov-2023 06:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Nov-2023 06:38:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Nov-2023 06:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Nov-2023 06:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Nov-2023 06:38:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Nov-2023 06:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Nov-2023 06:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Nov-2023 06:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Nov-2023 06:39:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Nov-2023 06:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Nov-2023 06:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Nov-2023 06:39:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Nov-2023 06:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Nov-2023 06:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Nov-2023 06:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Nov-2023 06:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Nov-2023 06:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Nov-2023 09:09:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Nov-2023 09:09:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Nov-2023 09:10:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2023 09:10:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2023 09:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Nov-2023 09:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Nov-2023 09:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Nov-2023 09:10:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Nov-2023 09:10:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Nov-2023 09:10:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Nov-2023 09:10:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Nov-2023 09:10:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Nov-2023 09:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Nov-2023 09:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Nov-2023 09:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Nov-2023 09:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Nov-2023 09:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2023 09:12:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2023 09:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Nov-2023 09:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Nov-2023 09:12:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Nov-2023 09:12:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Nov-2023 09:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Nov-2023 09:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Nov-2023 09:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Nov-2023 09:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Nov-2023 09:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Nov-2023 09:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Nov-2023 09:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Nov-2023 09:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Nov-2023 09:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Nov-2023 09:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Nov-2023 09:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Nov-2023 09:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Nov-2023 09:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Nov-2023 09:13:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Nov-2023 09:16:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Nov-2023 09:16:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Nov-2023 09:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2023 09:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2023 09:17:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Nov-2023 09:17:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Nov-2023 09:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Nov-2023 09:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Nov-2023 09:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Nov-2023 09:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Nov-2023 09:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Nov-2023 09:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Nov-2023 09:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Nov-2023 09:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Nov-2023 09:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Nov-2023 09:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Nov-2023 09:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2023 09:19:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2023 09:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Nov-2023 09:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Nov-2023 09:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Nov-2023 09:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Nov-2023 09:19:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Nov-2023 09:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Nov-2023 09:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Nov-2023 09:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Nov-2023 09:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Nov-2023 09:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Nov-2023 09:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Nov-2023 09:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Nov-2023 09:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Nov-2023 09:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Nov-2023 09:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Nov-2023 09:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Nov-2023 09:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Nov-2023 09:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2023 13:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2023 13:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2023 13:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2023 13:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2023 13:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2023 13:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2023 13:09:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2023 13:09:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2023 13:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2023 13:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2023 13:09:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2023 13:09:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2023 13:09:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2023 13:09:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2023 13:09:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2023 13:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2023 13:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2023 13:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2023 13:10:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2023 13:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2023 13:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2023 13:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2023 13:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2023 13:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2023 13:10:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2023 13:10:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2023 13:10:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2023 13:10:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2023 13:10:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2023 13:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2023 13:11:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2023 13:11:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2023 13:11:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2023 13:11:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2023 13:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2023 13:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2023 13:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2023 13:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2023 13:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2023 13:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2023 13:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2023 13:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2023 13:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2023 13:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2023 13:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2023 13:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2023 13:14:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2023 13:14:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2023 13:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2023 13:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2023 13:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2023 13:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2023 13:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2023 13:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2023 13:14:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2023 13:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2023 13:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2023 13:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2023 13:15:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2023 13:15:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2023 13:15:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2023 13:15:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2023 13:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2023 13:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2023 13:15:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2023 13:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2023 13:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2023 13:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2023 13:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2023 13:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2023 13:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2023 13:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2023 15:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2023 15:46:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2023 15:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2023 15:46:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Dec-2023 20:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Dec-2023 20:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Dec-2023 20:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Dec-2023 20:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Dec-2023 20:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Dec-2023 20:21:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Dec-2023 20:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Dec-2023 20:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Dec-2023 20:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Dec-2023 20:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Dec-2023 20:21:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Dec-2023 20:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Dec-2023 20:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Dec-2023 20:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Dec-2023 20:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Dec-2023 20:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Dec-2023 20:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Dec-2023 20:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2023 07:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2023 07:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2023 07:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2023 07:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2023 07:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2023 07:05:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2023 07:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2023 07:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2023 07:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2023 07:05:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2023 07:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2023 07:05:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2023 07:05:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2023 07:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2023 07:05:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2023 07:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2023 07:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2023 07:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Dec-2023 03:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Dec-2023 03:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Dec-2023 03:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Dec-2023 03:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Dec-2023 03:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Dec-2023 03:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Dec-2023 03:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Dec-2023 03:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Dec-2023 03:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Dec-2023 03:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Dec-2023 03:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Dec-2023 03:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Dec-2023 03:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Dec-2023 03:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Dec-2023 03:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Dec-2023 03:24:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Dec-2023 03:24:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Dec-2023 03:24:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Dec-2023 18:51:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Dec-2023 18:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Dec-2023 18:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Dec-2023 18:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Dec-2023 18:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Dec-2023 18:52:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Dec-2023 18:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Dec-2023 18:52:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Dec-2023 18:52:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Dec-2023 18:52:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Dec-2023 18:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Dec-2023 18:52:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Dec-2023 18:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Dec-2023 18:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Dec-2023 18:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Dec-2023 18:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Dec-2023 18:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Dec-2023 18:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Dec-2023 05:55:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Dec-2023 05:55:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Dec-2023 05:55:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Dec-2023 05:55:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Dec-2023 05:55:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Dec-2023 05:55:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Dec-2023 05:55:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Dec-2023 05:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Dec-2023 05:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Dec-2023 05:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Dec-2023 05:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Dec-2023 05:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Dec-2023 05:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Dec-2023 05:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Dec-2023 05:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Dec-2023 05:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Dec-2023 05:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Dec-2023 05:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2024 17:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2024 17:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2024 17:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2024 17:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2024 17:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2024 17:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2024 17:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2024 17:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2024 17:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2024 17:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2024 17:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2024 17:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2024 17:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2024 17:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2024 17:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2024 17:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2024 17:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2024 17:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2024 23:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2024 23:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2024 23:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2024 23:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2024 23:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2024 23:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2024 23:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2024 23:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2024 23:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2024 23:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2024 23:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2024 23:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2024 23:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2024 23:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2024 23:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2024 23:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2024 23:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2024 23:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jan-2024 09:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jan-2024 09:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jan-2024 09:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jan-2024 09:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jan-2024 09:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jan-2024 09:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jan-2024 09:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jan-2024 09:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jan-2024 09:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jan-2024 09:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jan-2024 09:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jan-2024 09:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jan-2024 09:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jan-2024 09:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jan-2024 09:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jan-2024 09:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jan-2024 09:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jan-2024 09:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jan-2024 23:19:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jan-2024 23:19:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jan-2024 23:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jan-2024 23:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jan-2024 23:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jan-2024 23:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jan-2024 23:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jan-2024 23:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jan-2024 23:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jan-2024 23:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jan-2024 23:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jan-2024 23:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jan-2024 23:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jan-2024 23:19:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jan-2024 23:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jan-2024 23:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jan-2024 23:19:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jan-2024 23:19:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jan-2024 03:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jan-2024 03:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jan-2024 03:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jan-2024 03:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jan-2024 03:57:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jan-2024 03:57:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jan-2024 03:57:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jan-2024 03:57:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jan-2024 03:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jan-2024 03:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jan-2024 03:57:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jan-2024 03:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jan-2024 03:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jan-2024 03:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jan-2024 03:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jan-2024 03:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jan-2024 03:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jan-2024 03:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2024 20:53:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2024 20:53:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2024 20:53:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2024 20:53:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2024 20:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2024 20:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2024 20:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2024 20:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2024 20:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2024 20:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2024 20:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2024 20:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2024 20:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2024 20:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2024 20:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2024 20:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2024 20:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2024 20:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jan-2024 12:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jan-2024 12:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jan-2024 12:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jan-2024 12:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jan-2024 12:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jan-2024 12:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jan-2024 12:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jan-2024 12:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jan-2024 12:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jan-2024 12:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jan-2024 12:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jan-2024 12:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jan-2024 12:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jan-2024 12:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jan-2024 12:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jan-2024 12:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jan-2024 12:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jan-2024 12:36:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2024 14:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2024 14:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2024 14:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2024 14:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2024 14:59:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2024 14:59:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2024 14:59:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2024 14:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2024 14:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2024 14:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2024 14:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2024 14:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2024 14:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2024 14:59:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2024 14:59:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2024 14:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2024 14:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2024 14:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2024 16:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2024 16:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2024 16:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2024 16:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2024 16:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2024 16:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2024 16:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2024 16:00:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2024 16:00:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2024 16:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2024 16:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2024 16:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2024 16:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2024 16:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2024 16:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2024 16:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2024 16:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2024 16:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2024 05:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2024 05:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2024 05:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2024 05:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2024 05:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2024 05:37:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2024 05:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2024 05:37:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2024 05:37:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2024 05:37:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2024 05:37:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2024 05:37:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2024 05:37:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2024 05:37:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2024 05:37:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2024 05:37:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2024 05:37:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2024 05:37:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2024 08:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2024 08:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2024 08:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2024 08:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2024 08:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2024 08:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2024 08:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2024 08:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2024 08:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2024 08:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2024 08:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2024 08:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2024 08:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2024 08:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2024 08:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2024 08:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2024 08:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2024 08:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2024 23:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2024 23:37:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2024 23:37:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2024 23:37:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2024 23:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2024 23:37:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2024 23:37:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2024 23:37:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2024 23:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2024 23:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2024 23:37:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2024 23:37:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2024 23:37:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2024 23:37:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2024 23:37:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2024 23:38:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2024 23:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2024 23:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2024 23:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2024 23:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2024 23:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2024 23:38:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2024 23:38:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2024 23:38:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2024 23:38:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2024 23:38:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2024 23:38:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2024 23:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2024 23:38:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2024 23:38:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2024 23:38:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2024 23:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2024 23:38:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2024 23:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2024 23:39:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2024 23:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2024 23:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2024 23:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2024 23:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2024 23:40:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2024 23:40:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2024 23:40:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2024 23:40:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2024 23:41:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2024 23:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2024 23:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2024 23:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2024 23:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2024 23:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2024 23:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2024 23:41:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2024 23:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2024 23:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2024 23:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2024 23:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2024 23:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2024 23:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2024 23:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2024 23:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2024 23:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2024 23:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2024 23:41:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2024 23:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2024 23:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2024 23:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2024 23:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2024 23:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2024 23:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2024 23:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2024 23:42:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2024 23:42:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2024 23:42:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2024 01:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2024 01:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2024 01:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2024 01:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2024 01:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2024 01:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2024 01:13:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2024 01:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2024 01:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2024 01:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2024 01:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2024 01:13:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2024 01:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2024 01:13:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2024 01:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2024 01:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2024 01:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2024 01:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2024 01:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2024 01:14:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2024 01:14:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2024 01:14:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2024 01:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2024 01:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2024 01:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2024 01:14:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2024 01:14:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2024 01:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2024 01:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2024 01:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2024 01:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2024 01:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2024 01:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2024 01:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2024 01:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2024 01:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2024 01:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2024 01:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2024 01:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2024 01:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2024 01:16:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2024 01:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2024 01:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2024 01:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2024 01:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2024 01:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2024 01:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2024 01:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2024 01:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2024 01:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2024 01:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2024 01:17:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2024 01:17:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2024 01:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2024 01:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2024 01:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2024 01:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2024 01:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2024 01:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2024 01:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2024 01:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2024 01:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2024 01:17:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2024 01:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2024 01:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2024 01:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2024 01:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2024 01:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2024 01:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2024 01:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2024 01:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2024 01:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2024 20:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2024 20:01:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2024 20:01:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2024 20:01:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2024 20:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2024 20:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2024 20:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2024 20:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2024 20:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2024 20:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2024 20:02:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2024 20:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2024 20:02:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2024 20:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2024 20:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2024 20:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2024 20:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2024 20:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2024 20:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2024 20:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2024 20:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2024 20:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2024 20:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2024 20:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2024 20:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2024 20:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2024 20:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2024 20:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2024 20:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2024 20:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2024 20:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2024 20:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2024 20:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2024 20:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2024 20:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2024 20:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2024 20:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2024 20:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2024 20:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2024 20:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2024 20:05:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2024 20:05:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2024 20:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2024 20:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2024 20:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2024 20:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2024 20:05:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2024 20:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2024 20:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2024 20:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2024 20:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2024 20:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2024 20:06:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2024 20:06:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2024 20:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2024 20:06:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2024 20:06:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2024 20:06:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2024 20:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2024 20:06:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2024 20:06:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2024 20:06:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2024 20:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2024 20:07:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2024 20:07:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2024 20:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2024 20:07:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2024 20:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2024 20:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2024 20:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2024 20:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2024 20:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 12:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 12:21:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 12:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 12:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 12:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 12:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 12:21:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 12:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 12:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 12:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 12:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 12:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 12:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 12:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 12:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 12:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 12:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 12:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 12:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 12:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 12:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 12:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 12:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 12:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 12:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 12:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 12:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 12:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 12:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 12:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 12:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 12:22:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 12:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 12:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 12:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 12:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 12:24:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 12:24:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 12:24:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 12:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 12:24:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 12:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 12:24:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 12:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 12:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 12:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 12:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 12:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 12:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 12:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 12:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 12:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 12:25:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 12:25:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 12:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 12:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 12:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 12:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 12:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 12:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 12:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 12:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 12:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 12:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 12:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 12:26:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 12:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 12:26:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 12:26:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 12:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 12:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 12:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 13:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 13:48:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 13:48:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 13:48:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 13:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 13:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 13:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 13:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 13:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 13:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 13:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 13:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 13:49:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 13:49:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 13:49:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 13:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 13:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 13:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 13:49:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 13:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 13:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 13:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 13:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 13:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 13:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 13:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 13:50:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 13:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 13:50:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 13:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 13:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 13:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 13:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 13:50:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 13:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 13:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 13:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 13:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 13:51:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 13:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 13:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 13:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 13:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 13:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 13:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 13:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 13:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 13:52:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 13:52:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 13:52:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 13:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 13:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 13:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 13:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 13:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 13:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 13:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 13:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 13:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 13:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 13:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 13:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 13:53:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 13:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 13:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 13:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 13:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 13:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 13:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 13:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 13:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 13:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2024 17:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jan-2024 17:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jan-2024 17:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jan-2024 17:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jan-2024 17:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jan-2024 17:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jan-2024 17:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jan-2024 17:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jan-2024 17:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2024 17:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jan-2024 17:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2024 17:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jan-2024 17:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2024 17:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jan-2024 17:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2024 17:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jan-2024 17:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jan-2024 17:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jan-2024 04:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jan-2024 04:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jan-2024 04:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jan-2024 04:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jan-2024 04:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jan-2024 04:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jan-2024 04:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jan-2024 04:31:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jan-2024 04:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jan-2024 04:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jan-2024 04:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jan-2024 04:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jan-2024 04:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jan-2024 04:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jan-2024 04:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jan-2024 04:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jan-2024 04:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jan-2024 04:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jan-2024 10:07:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jan-2024 10:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jan-2024 10:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jan-2024 10:07:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jan-2024 10:07:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jan-2024 10:07:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jan-2024 10:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jan-2024 10:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jan-2024 10:07:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jan-2024 10:07:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jan-2024 10:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jan-2024 10:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jan-2024 10:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jan-2024 10:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jan-2024 10:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jan-2024 10:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jan-2024 10:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jan-2024 10:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jan-2024 15:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jan-2024 15:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jan-2024 15:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jan-2024 15:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jan-2024 15:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jan-2024 15:33:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jan-2024 15:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jan-2024 15:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jan-2024 15:33:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jan-2024 15:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jan-2024 15:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jan-2024 15:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jan-2024 15:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jan-2024 15:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jan-2024 15:33:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jan-2024 15:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jan-2024 15:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jan-2024 15:33:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jan-2024 23:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jan-2024 23:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jan-2024 23:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jan-2024 23:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jan-2024 23:08:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jan-2024 23:08:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jan-2024 23:08:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jan-2024 23:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jan-2024 23:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jan-2024 23:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jan-2024 23:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jan-2024 23:08:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jan-2024 23:08:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jan-2024 23:08:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jan-2024 23:08:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jan-2024 23:08:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jan-2024 23:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jan-2024 23:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jan-2024 11:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jan-2024 11:28:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jan-2024 11:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jan-2024 11:28:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jan-2024 11:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jan-2024 11:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jan-2024 11:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jan-2024 11:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jan-2024 11:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jan-2024 11:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jan-2024 11:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jan-2024 11:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jan-2024 11:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jan-2024 11:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jan-2024 11:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jan-2024 11:29:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jan-2024 11:29:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jan-2024 11:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jan-2024 16:37:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jan-2024 16:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jan-2024 16:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jan-2024 16:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jan-2024 16:38:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jan-2024 16:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jan-2024 16:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jan-2024 16:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jan-2024 16:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jan-2024 16:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jan-2024 16:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jan-2024 16:39:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jan-2024 16:39:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jan-2024 16:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jan-2024 16:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jan-2024 16:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jan-2024 16:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jan-2024 16:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jan-2024 00:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jan-2024 00:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jan-2024 00:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jan-2024 00:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jan-2024 00:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jan-2024 00:37:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jan-2024 00:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jan-2024 00:38:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jan-2024 00:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jan-2024 00:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jan-2024 00:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jan-2024 00:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jan-2024 00:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jan-2024 00:39:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jan-2024 00:39:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jan-2024 00:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jan-2024 00:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jan-2024 00:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jan-2024 02:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jan-2024 02:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jan-2024 02:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jan-2024 02:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jan-2024 02:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jan-2024 02:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jan-2024 02:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jan-2024 02:02:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jan-2024 02:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jan-2024 02:02:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jan-2024 02:02:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jan-2024 02:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jan-2024 02:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jan-2024 02:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jan-2024 02:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jan-2024 02:04:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jan-2024 02:04:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jan-2024 02:04:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jan-2024 09:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jan-2024 09:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jan-2024 09:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jan-2024 09:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jan-2024 09:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jan-2024 10:00:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jan-2024 10:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jan-2024 10:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jan-2024 10:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jan-2024 10:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jan-2024 10:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jan-2024 10:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jan-2024 10:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jan-2024 10:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jan-2024 10:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jan-2024 10:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jan-2024 10:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jan-2024 10:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Feb-2024 00:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Feb-2024 00:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Feb-2024 00:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Feb-2024 00:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Feb-2024 00:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Feb-2024 00:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Feb-2024 00:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Feb-2024 00:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Feb-2024 00:28:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Feb-2024 00:28:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Feb-2024 00:28:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Feb-2024 00:28:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Feb-2024 00:28:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Feb-2024 00:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Feb-2024 00:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Feb-2024 00:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Feb-2024 00:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Feb-2024 00:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Feb-2024 01:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Feb-2024 01:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Feb-2024 01:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Feb-2024 01:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Feb-2024 01:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Feb-2024 01:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Feb-2024 01:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Feb-2024 01:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Feb-2024 01:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Feb-2024 01:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Feb-2024 01:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Feb-2024 01:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Feb-2024 01:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Feb-2024 01:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Feb-2024 01:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Feb-2024 01:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Feb-2024 01:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Feb-2024 01:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Feb-2024 00:38:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Feb-2024 00:38:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Feb-2024 00:38:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Feb-2024 00:38:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Feb-2024 00:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Feb-2024 00:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Feb-2024 00:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Feb-2024 00:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Feb-2024 00:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Feb-2024 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Feb-2024 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Feb-2024 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Feb-2024 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Feb-2024 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Feb-2024 00:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Feb-2024 00:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Feb-2024 00:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Feb-2024 00:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Feb-2024 05:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Feb-2024 05:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Feb-2024 05:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Feb-2024 05:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Feb-2024 05:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Feb-2024 05:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Feb-2024 05:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Feb-2024 05:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Feb-2024 05:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Feb-2024 05:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Feb-2024 05:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Feb-2024 05:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Feb-2024 05:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Feb-2024 05:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Feb-2024 05:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Feb-2024 05:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Feb-2024 05:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Feb-2024 05:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Feb-2024 22:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Feb-2024 22:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Feb-2024 22:40:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Feb-2024 22:40:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Feb-2024 22:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Feb-2024 22:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Feb-2024 22:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Feb-2024 22:40:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Feb-2024 22:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Feb-2024 22:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Feb-2024 22:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Feb-2024 22:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Feb-2024 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Feb-2024 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Feb-2024 22:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Feb-2024 22:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Feb-2024 22:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Feb-2024 22:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Feb-2024 02:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Feb-2024 02:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Feb-2024 02:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Feb-2024 02:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Feb-2024 02:44:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Feb-2024 02:44:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Feb-2024 02:44:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Feb-2024 02:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Feb-2024 02:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Feb-2024 02:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Feb-2024 02:44:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Feb-2024 02:44:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Feb-2024 02:44:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Feb-2024 02:44:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Feb-2024 02:44:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Feb-2024 02:44:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Feb-2024 02:45:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Feb-2024 02:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Feb-2024 04:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Feb-2024 04:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Feb-2024 04:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Feb-2024 04:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Feb-2024 04:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Feb-2024 04:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Feb-2024 04:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Feb-2024 04:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Feb-2024 04:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Feb-2024 04:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Feb-2024 04:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Feb-2024 04:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Feb-2024 04:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Feb-2024 04:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Feb-2024 04:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Feb-2024 04:29:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Feb-2024 04:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Feb-2024 04:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Feb-2024 06:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Feb-2024 06:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Feb-2024 06:10:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Feb-2024 06:10:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Feb-2024 06:10:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Feb-2024 06:10:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Feb-2024 06:10:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Feb-2024 06:10:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Feb-2024 06:10:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Feb-2024 06:10:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Feb-2024 06:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Feb-2024 06:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Feb-2024 06:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Feb-2024 06:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Feb-2024 06:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Feb-2024 06:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Feb-2024 06:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Feb-2024 06:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Feb-2024 12:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Feb-2024 12:09:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Feb-2024 12:09:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Feb-2024 12:09:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Feb-2024 12:09:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Feb-2024 12:09:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Feb-2024 12:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Feb-2024 12:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Feb-2024 12:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Feb-2024 12:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Feb-2024 12:09:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Feb-2024 12:09:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Feb-2024 12:09:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Feb-2024 12:09:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Feb-2024 12:09:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Feb-2024 12:09:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Feb-2024 12:09:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Feb-2024 12:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Feb-2024 23:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Feb-2024 23:59:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Feb-2024 23:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Feb-2024 23:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Feb-2024 11:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Feb-2024 11:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Feb-2024 11:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Feb-2024 11:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Feb-2024 11:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Feb-2024 11:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Feb-2024 11:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Feb-2024 11:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Feb-2024 11:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Feb-2024 11:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Feb-2024 11:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Feb-2024 11:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Feb-2024 11:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Feb-2024 11:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Feb-2024 11:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Feb-2024 11:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Feb-2024 11:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Feb-2024 11:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Feb-2024 18:03:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Feb-2024 18:03:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Feb-2024 18:03:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Feb-2024 18:03:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Feb-2024 18:03:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Feb-2024 18:03:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Feb-2024 18:03:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Feb-2024 18:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Feb-2024 18:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Feb-2024 18:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Feb-2024 18:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Feb-2024 18:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Feb-2024 18:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Feb-2024 18:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Feb-2024 18:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Feb-2024 18:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Feb-2024 18:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Feb-2024 18:04:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Feb-2024 20:10:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Feb-2024 20:10:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Feb-2024 20:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Feb-2024 20:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Feb-2024 20:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Feb-2024 20:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Feb-2024 20:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Feb-2024 20:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Feb-2024 20:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Feb-2024 20:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Feb-2024 20:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Feb-2024 20:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Feb-2024 20:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Feb-2024 20:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Feb-2024 20:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Feb-2024 20:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Feb-2024 20:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Feb-2024 20:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Feb-2024 22:45:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Feb-2024 22:45:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Feb-2024 22:45:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Feb-2024 22:45:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Feb-2024 22:45:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Feb-2024 22:45:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Feb-2024 22:45:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Feb-2024 22:45:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Feb-2024 22:45:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Feb-2024 22:45:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Feb-2024 22:45:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Feb-2024 22:45:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Feb-2024 22:45:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Feb-2024 22:45:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Feb-2024 22:45:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Feb-2024 22:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Feb-2024 22:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Feb-2024 22:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Feb-2024 03:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Feb-2024 03:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Feb-2024 03:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Feb-2024 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Feb-2024 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Feb-2024 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Feb-2024 00:10:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Feb-2024 00:10:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Feb-2024 00:10:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Feb-2024 00:10:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Feb-2024 00:10:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Feb-2024 00:10:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Feb-2024 00:10:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Feb-2024 00:10:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Feb-2024 00:10:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Feb-2024 00:10:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Feb-2024 00:10:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Feb-2024 00:10:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Feb-2024 00:10:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Feb-2024 00:10:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Feb-2024 00:10:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Feb-2024 00:10:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Feb-2024 00:10:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Feb-2024 00:10:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Feb-2024 11:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Feb-2024 11:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Feb-2024 11:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Feb-2024 11:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Feb-2024 11:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Feb-2024 11:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Feb-2024 11:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Feb-2024 11:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Feb-2024 11:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Feb-2024 11:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Feb-2024 11:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Feb-2024 11:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Feb-2024 11:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Feb-2024 11:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Feb-2024 11:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Feb-2024 11:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Feb-2024 11:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Feb-2024 11:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Feb-2024 09:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Feb-2024 09:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Feb-2024 09:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Feb-2024 09:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Feb-2024 09:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Feb-2024 09:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Feb-2024 09:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Feb-2024 20:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Feb-2024 20:38:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Feb-2024 20:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Feb-2024 20:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Feb-2024 20:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Feb-2024 20:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Feb-2024 20:38:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Feb-2024 20:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Feb-2024 20:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Feb-2024 20:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Feb-2024 20:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Feb-2024 20:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Feb-2024 20:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Feb-2024 20:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Feb-2024 20:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Feb-2024 20:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Feb-2024 20:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Feb-2024 20:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Feb-2024 22:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Feb-2024 22:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Feb-2024 22:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Feb-2024 22:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Feb-2024 22:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Feb-2024 22:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Feb-2024 22:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Feb-2024 22:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Feb-2024 22:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Feb-2024 22:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Feb-2024 22:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Feb-2024 22:03:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Feb-2024 22:03:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Feb-2024 22:03:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Feb-2024 22:03:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Feb-2024 22:03:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Feb-2024 22:03:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Feb-2024 22:03:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2024 01:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2024 01:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2024 01:50:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2024 01:50:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2024 01:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2024 01:50:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2024 01:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2024 01:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2024 01:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2024 01:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2024 01:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2024 01:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2024 01:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2024 01:50:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2024 01:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2024 01:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2024 01:50:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2024 01:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2024 12:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2024 12:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2024 12:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2024 12:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2024 12:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2024 12:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2024 12:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2024 12:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2024 12:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2024 12:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2024 12:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2024 12:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2024 12:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2024 12:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2024 12:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2024 12:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2024 12:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2024 12:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2024 12:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2024 12:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2024 12:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2024 12:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2024 12:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2024 12:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2024 12:13:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2024 12:13:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2024 12:13:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2024 12:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2024 12:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2024 12:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2024 12:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2024 12:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2024 12:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2024 12:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2024 12:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2024 12:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Feb-2024 04:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Feb-2024 04:55:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Feb-2024 04:55:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Feb-2024 04:55:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Feb-2024 04:55:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Feb-2024 04:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Feb-2024 04:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Feb-2024 04:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Feb-2024 04:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Feb-2024 04:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Feb-2024 04:55:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Feb-2024 04:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Feb-2024 04:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Feb-2024 04:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Feb-2024 04:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Feb-2024 04:55:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Feb-2024 04:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Feb-2024 04:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Feb-2024 16:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Feb-2024 16:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Feb-2024 16:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Feb-2024 16:39:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Feb-2024 16:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Feb-2024 16:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Feb-2024 16:39:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Feb-2024 16:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Feb-2024 16:39:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Feb-2024 16:39:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Feb-2024 16:39:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Feb-2024 16:39:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Feb-2024 16:39:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Feb-2024 16:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Feb-2024 16:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Feb-2024 16:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Feb-2024 16:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Feb-2024 16:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Mar-2024 11:04:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Mar-2024 11:04:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Mar-2024 11:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Mar-2024 11:04:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Mar-2024 11:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Mar-2024 11:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Mar-2024 11:04:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Mar-2024 11:04:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Mar-2024 11:04:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Mar-2024 11:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Mar-2024 11:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Mar-2024 11:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Mar-2024 11:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Mar-2024 11:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Mar-2024 11:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Mar-2024 11:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Mar-2024 11:04:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Mar-2024 11:04:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Mar-2024 11:12:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Mar-2024 11:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Mar-2024 11:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Mar-2024 11:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Mar-2024 11:12:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Mar-2024 11:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Mar-2024 11:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Mar-2024 11:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Mar-2024 11:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Mar-2024 11:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Mar-2024 11:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Mar-2024 11:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Mar-2024 11:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Mar-2024 11:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Mar-2024 11:12:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Mar-2024 11:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Mar-2024 11:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Mar-2024 11:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Mar-2024 06:24:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Mar-2024 06:24:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Mar-2024 06:24:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Mar-2024 06:24:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Mar-2024 06:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Mar-2024 06:24:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Mar-2024 06:24:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Mar-2024 06:24:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Mar-2024 06:24:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Mar-2024 06:24:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Mar-2024 06:24:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Mar-2024 06:24:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Mar-2024 06:24:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Mar-2024 06:24:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Mar-2024 06:24:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Mar-2024 06:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Mar-2024 06:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Mar-2024 06:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Mar-2024 13:05:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Mar-2024 13:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Mar-2024 13:05:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Mar-2024 13:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Mar-2024 13:05:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Mar-2024 13:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Mar-2024 13:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Mar-2024 13:06:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Mar-2024 13:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Mar-2024 13:06:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Mar-2024 13:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Mar-2024 13:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Mar-2024 13:06:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Mar-2024 13:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Mar-2024 13:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Mar-2024 13:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Mar-2024 13:06:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Mar-2024 13:06:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Mar-2024 15:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Mar-2024 15:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Mar-2024 15:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Mar-2024 15:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Mar-2024 15:03:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Mar-2024 15:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Mar-2024 15:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Mar-2024 15:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Mar-2024 15:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Mar-2024 15:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Mar-2024 15:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Mar-2024 15:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Mar-2024 15:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Mar-2024 15:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Mar-2024 15:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Mar-2024 15:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Mar-2024 15:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Mar-2024 15:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Mar-2024 08:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Mar-2024 08:12:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Mar-2024 08:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Mar-2024 08:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Mar-2024 08:12:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Mar-2024 08:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Mar-2024 08:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Mar-2024 08:12:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Mar-2024 08:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Mar-2024 08:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Mar-2024 08:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Mar-2024 08:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Mar-2024 08:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Mar-2024 08:12:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Mar-2024 08:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Mar-2024 08:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Mar-2024 08:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Mar-2024 08:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Mar-2024 08:19:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Mar-2024 08:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Mar-2024 08:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Mar-2024 08:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Mar-2024 08:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Mar-2024 08:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Mar-2024 08:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Mar-2024 08:19:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Mar-2024 08:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Mar-2024 08:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Mar-2024 08:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Mar-2024 08:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Mar-2024 08:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Mar-2024 08:19:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Mar-2024 08:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Mar-2024 08:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Mar-2024 08:19:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Mar-2024 08:19:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Mar-2024 13:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Mar-2024 13:42:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Mar-2024 13:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Mar-2024 13:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Mar-2024 13:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Mar-2024 13:42:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Mar-2024 13:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Mar-2024 13:42:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Mar-2024 13:42:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Mar-2024 13:42:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Mar-2024 13:43:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Mar-2024 13:43:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Mar-2024 13:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Mar-2024 13:43:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Mar-2024 13:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Mar-2024 13:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Mar-2024 13:43:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Mar-2024 13:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Mar-2024 16:04:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Mar-2024 16:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Mar-2024 16:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Mar-2024 16:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Mar-2024 16:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Mar-2024 16:04:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Mar-2024 16:04:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Mar-2024 16:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Mar-2024 16:05:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Mar-2024 16:05:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Mar-2024 16:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Mar-2024 16:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Mar-2024 16:05:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Mar-2024 16:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Mar-2024 16:05:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Mar-2024 16:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Mar-2024 16:05:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Mar-2024 16:05:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Mar-2024 03:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Mar-2024 03:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Mar-2024 03:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Mar-2024 03:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Mar-2024 03:52:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Mar-2024 03:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Mar-2024 03:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Mar-2024 03:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Mar-2024 03:53:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Mar-2024 03:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Mar-2024 03:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Mar-2024 03:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Mar-2024 03:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Mar-2024 03:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Mar-2024 03:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Mar-2024 03:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Mar-2024 03:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Mar-2024 03:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 16:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 16:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 16:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 16:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 16:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 16:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 16:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 16:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 16:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 16:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 16:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 16:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 16:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 16:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 16:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 16:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 16:22:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 16:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 16:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 16:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 16:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 16:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 16:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 16:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 16:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 16:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 16:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 16:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 16:23:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 16:23:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 16:23:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 16:24:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 16:24:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 16:24:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 16:24:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 16:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 16:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 16:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 16:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 16:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 16:26:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 16:26:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 16:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 16:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 16:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 16:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 16:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 16:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 16:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 16:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 16:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 16:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 16:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 16:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 16:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 16:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 16:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 16:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 16:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 16:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 16:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 16:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 16:27:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 16:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 16:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 16:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 16:27:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 16:27:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 16:27:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 16:27:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 16:27:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 16:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 18:21:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 18:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 18:21:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 18:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 18:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 18:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 18:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 18:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 18:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 18:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 18:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 18:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 18:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 18:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 18:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 18:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 18:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 18:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 18:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 18:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 18:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 18:23:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 18:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 18:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 18:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 18:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 18:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 18:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 18:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 18:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 18:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 18:23:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 18:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 18:23:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 18:24:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 18:24:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 18:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 18:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Mar-2024 18:26:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 18:26:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Mar-2024 18:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 18:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Mar-2024 18:26:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 18:26:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Mar-2024 18:26:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 18:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Mar-2024 18:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 18:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Mar-2024 18:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 18:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Mar-2024 18:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 18:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Mar-2024 18:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 18:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Mar-2024 18:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 18:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Mar-2024 18:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 18:27:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Mar-2024 18:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 18:27:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Mar-2024 18:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 18:27:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Mar-2024 18:27:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 18:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Mar-2024 18:28:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 18:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Mar-2024 18:28:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 18:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Mar-2024 18:28:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 18:28:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Mar-2024 18:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Mar-2024 18:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Mar-2024 13:09:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Mar-2024 13:09:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Mar-2024 13:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Mar-2024 13:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Mar-2024 13:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Mar-2024 13:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Mar-2024 11:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Mar-2024 11:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Mar-2024 11:28:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Mar-2024 11:28:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Mar-2024 11:28:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Mar-2024 11:28:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Mar-2024 11:28:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Mar-2024 11:28:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Mar-2024 11:28:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Mar-2024 11:28:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Mar-2024 11:28:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Mar-2024 11:28:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Mar-2024 11:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Mar-2024 11:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Mar-2024 11:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Mar-2024 11:28:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Mar-2024 11:28:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Mar-2024 11:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Mar-2024 13:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Mar-2024 13:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Mar-2024 13:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Mar-2024 13:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Mar-2024 13:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Mar-2024 13:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Mar-2024 13:46:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Mar-2024 13:46:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Mar-2024 13:46:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Mar-2024 13:46:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Mar-2024 13:46:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Mar-2024 13:46:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Mar-2024 13:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Mar-2024 13:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Mar-2024 13:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Mar-2024 13:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Mar-2024 13:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Mar-2024 13:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Mar-2024 18:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Mar-2024 18:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Mar-2024 18:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Mar-2024 18:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Mar-2024 21:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Mar-2024 21:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Mar-2024 21:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Mar-2024 21:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Mar-2024 21:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Mar-2024 21:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Mar-2024 21:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Mar-2024 21:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Mar-2024 21:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Mar-2024 21:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Mar-2024 21:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Mar-2024 21:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Mar-2024 21:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Mar-2024 21:10:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Mar-2024 21:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Mar-2024 21:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Mar-2024 21:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Mar-2024 21:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Mar-2024 00:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Mar-2024 00:52:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Mar-2024 00:52:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Mar-2024 00:52:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Mar-2024 00:52:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Mar-2024 00:52:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Mar-2024 00:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Mar-2024 00:52:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Mar-2024 00:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Mar-2024 00:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Mar-2024 00:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Mar-2024 00:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Mar-2024 00:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Mar-2024 00:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Mar-2024 00:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Mar-2024 00:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Mar-2024 00:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Mar-2024 00:52:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Mar-2024 05:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Mar-2024 05:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Mar-2024 05:43:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Mar-2024 05:43:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Mar-2024 05:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Mar-2024 05:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Mar-2024 05:43:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Mar-2024 05:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Mar-2024 05:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Mar-2024 05:43:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Mar-2024 05:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Mar-2024 05:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Mar-2024 05:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Mar-2024 05:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Mar-2024 05:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Mar-2024 05:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Mar-2024 05:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Mar-2024 05:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Mar-2024 07:45:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Mar-2024 07:45:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Mar-2024 07:45:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Mar-2024 07:45:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Mar-2024 07:45:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Mar-2024 07:45:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Mar-2024 07:45:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Mar-2024 07:45:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Mar-2024 07:45:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Mar-2024 07:45:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Mar-2024 07:45:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Mar-2024 07:45:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Mar-2024 07:45:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Mar-2024 07:45:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Mar-2024 07:45:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Mar-2024 07:45:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Mar-2024 07:45:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Mar-2024 07:45:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Mar-2024 03:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Mar-2024 03:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Mar-2024 03:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Mar-2024 03:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Mar-2024 03:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Mar-2024 03:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Mar-2024 03:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Mar-2024 03:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Mar-2024 03:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Mar-2024 03:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Mar-2024 03:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Mar-2024 03:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Mar-2024 03:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Mar-2024 03:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Mar-2024 03:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Mar-2024 03:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Mar-2024 03:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Mar-2024 03:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Mar-2024 07:27:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Mar-2024 07:27:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Mar-2024 07:27:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Mar-2024 07:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Mar-2024 07:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Mar-2024 07:27:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Mar-2024 07:27:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Mar-2024 07:27:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Mar-2024 07:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Mar-2024 07:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Mar-2024 07:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Mar-2024 07:27:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Mar-2024 07:27:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Mar-2024 07:27:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Mar-2024 07:27:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Mar-2024 07:27:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Mar-2024 07:27:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Mar-2024 07:27:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Mar-2024 10:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Mar-2024 10:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Mar-2024 10:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Mar-2024 10:54:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Mar-2024 10:54:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Mar-2024 10:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Mar-2024 10:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Mar-2024 10:54:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Mar-2024 10:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Mar-2024 10:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Mar-2024 10:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Mar-2024 10:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Mar-2024 10:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Mar-2024 10:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Mar-2024 10:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Mar-2024 10:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Mar-2024 10:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Mar-2024 10:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Mar-2024 18:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Mar-2024 18:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Mar-2024 18:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Mar-2024 18:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Mar-2024 18:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Mar-2024 18:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Mar-2024 18:06:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Mar-2024 18:06:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Mar-2024 18:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Mar-2024 18:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Mar-2024 18:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Mar-2024 18:06:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Mar-2024 18:06:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Mar-2024 18:06:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Mar-2024 18:06:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Mar-2024 18:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Mar-2024 18:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Mar-2024 18:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Mar-2024 19:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Mar-2024 19:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Mar-2024 19:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Mar-2024 19:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Mar-2024 19:21:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Mar-2024 19:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Mar-2024 19:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Mar-2024 19:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Mar-2024 19:21:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Mar-2024 19:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Mar-2024 19:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Mar-2024 19:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Mar-2024 19:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Mar-2024 19:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Mar-2024 19:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Mar-2024 19:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Mar-2024 19:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Mar-2024 19:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Mar-2024 23:36:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Mar-2024 23:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Mar-2024 23:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Mar-2024 23:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Mar-2024 23:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Mar-2024 23:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Mar-2024 23:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Mar-2024 23:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Mar-2024 23:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Mar-2024 23:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 03:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 03:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 03:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 03:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 03:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 03:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 03:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 03:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 03:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 03:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 08:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 08:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 08:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 08:37:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 08:37:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 08:37:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 08:37:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 08:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 08:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 08:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 08:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 08:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 08:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 08:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 08:37:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 08:37:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 08:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 08:37:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 08:39:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 08:39:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 08:39:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 08:39:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 08:39:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 08:39:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 08:39:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 08:39:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 08:39:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 08:39:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 08:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 08:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 08:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 08:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 08:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 08:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 08:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 08:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 08:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 08:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 08:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 08:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 08:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 08:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 08:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 08:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 08:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 08:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 08:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 08:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 08:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 08:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 08:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 08:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 08:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 08:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 11:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 11:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 11:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 11:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 11:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 11:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 11:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 12:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 12:19:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 12:19:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 12:19:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 12:19:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 12:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 12:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 12:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 12:19:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 13:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 13:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 13:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 13:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 13:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 13:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 13:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 13:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 13:00:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 13:00:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 13:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 13:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 13:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 13:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 13:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 13:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 13:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 13:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 14:30:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 14:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 14:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 14:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 14:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 14:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 14:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 14:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 14:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 14:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 14:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 14:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 14:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 14:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 14:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 14:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 14:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 14:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 14:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 14:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 14:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 14:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 14:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 14:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 14:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 14:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 14:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 14:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 16:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 16:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 16:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 16:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 16:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 16:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 16:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 16:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 16:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 16:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 16:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 16:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 16:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 16:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 16:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 16:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 16:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 16:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 17:26:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 17:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 17:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 17:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 17:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 17:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 17:26:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 17:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 17:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 17:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 17:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 17:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 17:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 17:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 17:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 17:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 17:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 17:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 17:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 17:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 17:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Apr-2024 17:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Apr-2024 17:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Apr-2024 17:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Apr-2024 17:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Apr-2024 17:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Apr-2024 17:55:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Apr-2024 17:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 17:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Apr-2024 17:55:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Apr-2024 17:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Apr-2024 17:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 17:55:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 17:55:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Apr-2024 17:55:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Apr-2024 17:55:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Apr-2024 18:54:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Apr-2024 18:54:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Apr-2024 18:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Apr-2024 18:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Apr-2024 18:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Apr-2024 18:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Apr-2024 06:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Apr-2024 06:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Apr-2024 06:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Apr-2024 06:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Apr-2024 06:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Apr-2024 06:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Apr-2024 06:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Apr-2024 06:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Apr-2024 06:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Apr-2024 06:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Apr-2024 06:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Apr-2024 06:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Apr-2024 09:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Apr-2024 09:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Apr-2024 09:35:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Apr-2024 09:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Apr-2024 09:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Apr-2024 09:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Apr-2024 09:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Apr-2024 09:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Apr-2024 09:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Apr-2024 21:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Apr-2024 21:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Apr-2024 21:26:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Apr-2024 21:26:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Apr-2024 00:19:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Apr-2024 00:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Apr-2024 00:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Apr-2024 00:19:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Apr-2024 00:19:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Apr-2024 00:19:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Apr-2024 00:19:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Apr-2024 00:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Apr-2024 00:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Apr-2024 00:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Apr-2024 00:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Apr-2024 00:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Apr-2024 00:19:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Apr-2024 00:19:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Apr-2024 00:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Apr-2024 00:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Apr-2024 00:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Apr-2024 00:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Apr-2024 05:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Apr-2024 05:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Apr-2024 05:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Apr-2024 05:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Apr-2024 05:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Apr-2024 05:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Apr-2024 05:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Apr-2024 05:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Apr-2024 05:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Apr-2024 05:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Apr-2024 05:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Apr-2024 05:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Apr-2024 05:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Apr-2024 05:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Apr-2024 05:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Apr-2024 05:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Apr-2024 05:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Apr-2024 05:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Apr-2024 08:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Apr-2024 08:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Apr-2024 08:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Apr-2024 08:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Apr-2024 08:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Apr-2024 08:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Apr-2024 08:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Apr-2024 08:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Apr-2024 08:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Apr-2024 08:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Apr-2024 08:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Apr-2024 08:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Apr-2024 08:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Apr-2024 08:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Apr-2024 08:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Apr-2024 08:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Apr-2024 08:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Apr-2024 08:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Apr-2024 02:13:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Apr-2024 02:13:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Apr-2024 02:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Apr-2024 02:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Apr-2024 02:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Apr-2024 02:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Apr-2024 02:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Apr-2024 02:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Apr-2024 02:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Apr-2024 02:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Apr-2024 02:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Apr-2024 02:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Apr-2024 02:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Apr-2024 02:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Apr-2024 02:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Apr-2024 02:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Apr-2024 02:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Apr-2024 02:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Apr-2024 19:28:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Apr-2024 19:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Apr-2024 19:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Apr-2024 19:28:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Apr-2024 19:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Apr-2024 19:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Apr-2024 19:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Apr-2024 19:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Apr-2024 19:28:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Apr-2024 03:50:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Apr-2024 03:50:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Apr-2024 03:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Apr-2024 03:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Apr-2024 03:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Apr-2024 03:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Apr-2024 03:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Apr-2024 03:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Apr-2024 03:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Apr-2024 03:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Apr-2024 03:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Apr-2024 03:50:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Apr-2024 03:50:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Apr-2024 03:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Apr-2024 03:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Apr-2024 03:50:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Apr-2024 03:50:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Apr-2024 03:50:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Apr-2024 14:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Apr-2024 14:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Apr-2024 14:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Apr-2024 14:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Apr-2024 22:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Apr-2024 22:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Apr-2024 22:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Apr-2024 22:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Apr-2024 22:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Apr-2024 22:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Apr-2024 22:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Apr-2024 22:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Apr-2024 22:17:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Apr-2024 22:17:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Apr-2024 22:17:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Apr-2024 22:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Apr-2024 22:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Apr-2024 22:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Apr-2024 22:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Apr-2024 22:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Apr-2024 22:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Apr-2024 22:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Apr-2024 22:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Apr-2024 22:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Apr-2024 22:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Apr-2024 22:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Apr-2024 22:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Apr-2024 22:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Apr-2024 22:42:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Apr-2024 22:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Apr-2024 22:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Apr-2024 22:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Apr-2024 22:42:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Apr-2024 22:42:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Apr-2024 22:42:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Apr-2024 22:42:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Apr-2024 22:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Apr-2024 22:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Apr-2024 22:42:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Apr-2024 22:42:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Apr-2024 08:04:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Apr-2024 08:04:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Apr-2024 08:04:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Apr-2024 08:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Apr-2024 08:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Apr-2024 08:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Apr-2024 08:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Apr-2024 08:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Apr-2024 08:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Apr-2024 08:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Apr-2024 08:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Apr-2024 08:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Apr-2024 08:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Apr-2024 08:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Apr-2024 08:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Apr-2024 08:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Apr-2024 08:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Apr-2024 08:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Apr-2024 23:14:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Apr-2024 23:14:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Apr-2024 23:14:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Apr-2024 23:14:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Apr-2024 23:14:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Apr-2024 23:14:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Apr-2024 23:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Apr-2024 23:14:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Apr-2024 23:14:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Apr-2024 23:14:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Apr-2024 23:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Apr-2024 23:14:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Apr-2024 23:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Apr-2024 23:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Apr-2024 23:14:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Apr-2024 23:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Apr-2024 23:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Apr-2024 23:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Apr-2024 07:56:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Apr-2024 07:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Apr-2024 07:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Apr-2024 07:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Apr-2024 07:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Apr-2024 07:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Apr-2024 07:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Apr-2024 07:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Apr-2024 07:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Apr-2024 07:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Apr-2024 07:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Apr-2024 07:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Apr-2024 07:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Apr-2024 07:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Apr-2024 07:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Apr-2024 07:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Apr-2024 07:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Apr-2024 07:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-May-2024 10:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-May-2024 10:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-May-2024 10:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-May-2024 10:16:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-May-2024 10:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-May-2024 10:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-May-2024 10:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-May-2024 10:16:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-May-2024 10:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-May-2024 10:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-May-2024 10:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-May-2024 10:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-May-2024 10:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-May-2024 10:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-May-2024 10:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-May-2024 10:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-May-2024 10:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-May-2024 10:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-May-2024 08:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-May-2024 08:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-May-2024 08:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-May-2024 08:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-May-2024 08:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-May-2024 08:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-May-2024 08:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-May-2024 08:43:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-May-2024 08:43:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-May-2024 08:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-May-2024 08:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-May-2024 08:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-May-2024 08:43:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-May-2024 08:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-May-2024 08:43:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-May-2024 08:43:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-May-2024 08:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-May-2024 08:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-May-2024 04:08:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-May-2024 04:08:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-May-2024 04:08:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-May-2024 04:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-May-2024 04:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-May-2024 04:08:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-May-2024 04:08:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-May-2024 04:08:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-May-2024 04:08:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-May-2024 04:08:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-May-2024 04:08:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-May-2024 04:08:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-May-2024 04:08:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-May-2024 04:08:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-May-2024 04:08:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-May-2024 04:08:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-May-2024 04:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-May-2024 04:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-May-2024 19:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-May-2024 19:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-May-2024 19:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-May-2024 19:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-May-2024 19:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-May-2024 19:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-May-2024 19:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-May-2024 19:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-May-2024 19:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-May-2024 19:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-May-2024 19:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-May-2024 19:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-May-2024 19:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-May-2024 19:43:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-May-2024 19:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-May-2024 19:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-May-2024 19:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-May-2024 19:43:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-May-2024 09:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-May-2024 09:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-May-2024 09:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-May-2024 09:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-May-2024 09:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-May-2024 09:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-May-2024 09:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-May-2024 09:28:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-May-2024 09:28:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-May-2024 09:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-May-2024 09:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-May-2024 09:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-May-2024 09:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-May-2024 09:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-May-2024 09:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-May-2024 09:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-May-2024 09:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-May-2024 09:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-May-2024 01:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-May-2024 01:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-May-2024 01:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-May-2024 01:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-May-2024 01:59:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-May-2024 01:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-May-2024 01:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-May-2024 02:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-May-2024 02:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-May-2024 02:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-May-2024 02:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-May-2024 02:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-May-2024 02:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-May-2024 02:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-May-2024 02:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-May-2024 02:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-May-2024 02:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-May-2024 02:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-May-2024 09:11:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-May-2024 09:11:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-May-2024 09:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-May-2024 09:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-May-2024 09:11:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-May-2024 09:11:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-May-2024 09:11:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-May-2024 09:11:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-May-2024 09:11:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-May-2024 09:11:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-May-2024 09:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-May-2024 09:11:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-May-2024 09:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-May-2024 09:11:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-May-2024 09:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-May-2024 09:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-May-2024 09:11:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-May-2024 09:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-May-2024 10:09:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-May-2024 10:09:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-May-2024 10:09:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-May-2024 10:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-May-2024 10:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-May-2024 10:09:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-May-2024 10:09:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-May-2024 10:09:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-May-2024 10:09:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-May-2024 10:09:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-May-2024 10:09:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-May-2024 10:09:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-May-2024 10:09:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-May-2024 10:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-May-2024 10:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-May-2024 10:09:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-May-2024 10:09:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-May-2024 10:09:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-May-2024 07:27:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-May-2024 07:27:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-May-2024 07:27:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-May-2024 07:27:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-May-2024 07:27:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-May-2024 07:27:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-May-2024 07:27:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-May-2024 07:27:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-May-2024 07:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-May-2024 07:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-May-2024 07:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-May-2024 07:27:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-May-2024 07:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-May-2024 07:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-May-2024 07:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-May-2024 07:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-May-2024 07:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-May-2024 07:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-May-2024 08:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-May-2024 08:50:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-May-2024 08:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-May-2024 08:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-May-2024 08:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-May-2024 08:50:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-May-2024 08:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-May-2024 08:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-May-2024 08:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-May-2024 08:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-May-2024 08:50:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-May-2024 08:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-May-2024 08:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-May-2024 08:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-May-2024 08:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-May-2024 08:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-May-2024 08:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-May-2024 08:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-May-2024 19:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-May-2024 19:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-May-2024 19:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-May-2024 19:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-May-2024 19:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-May-2024 19:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-May-2024 19:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-May-2024 19:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-May-2024 19:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-May-2024 19:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-May-2024 19:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-May-2024 19:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-May-2024 19:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-May-2024 19:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-May-2024 19:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-May-2024 19:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-May-2024 19:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-May-2024 19:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-May-2024 16:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-May-2024 16:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-May-2024 16:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-May-2024 16:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-May-2024 16:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-May-2024 16:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-May-2024 16:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-May-2024 16:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-May-2024 16:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-May-2024 16:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-May-2024 16:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-May-2024 16:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-May-2024 16:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-May-2024 16:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-May-2024 16:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-May-2024 16:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-May-2024 16:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-May-2024 16:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-May-2024 01:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-May-2024 01:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-May-2024 01:58:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-May-2024 01:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-May-2024 01:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-May-2024 01:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-May-2024 01:58:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-May-2024 01:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-May-2024 01:58:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-May-2024 01:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-May-2024 01:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-May-2024 01:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-May-2024 01:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-May-2024 01:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-May-2024 01:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-May-2024 01:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-May-2024 01:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-May-2024 01:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-May-2024 02:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-May-2024 02:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-May-2024 02:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-May-2024 02:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-May-2024 02:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-May-2024 02:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-May-2024 02:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-May-2024 02:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-May-2024 02:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-May-2024 02:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-May-2024 02:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-May-2024 02:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-May-2024 02:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-May-2024 02:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-May-2024 02:40:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-May-2024 02:41:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-May-2024 02:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-May-2024 02:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-May-2024 06:50:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-May-2024 06:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-May-2024 06:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-May-2024 06:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-May-2024 06:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-May-2024 06:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-May-2024 06:50:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-May-2024 06:50:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-May-2024 06:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-May-2024 06:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-May-2024 06:50:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-May-2024 06:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-May-2024 06:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-May-2024 06:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-May-2024 06:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-May-2024 06:51:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-May-2024 06:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-May-2024 06:51:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-May-2024 09:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-May-2024 09:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-May-2024 09:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-May-2024 09:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-May-2024 09:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-May-2024 09:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-May-2024 09:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-May-2024 09:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-May-2024 09:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-May-2024 09:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-May-2024 09:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-May-2024 09:29:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-May-2024 09:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-May-2024 09:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-May-2024 09:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-May-2024 09:29:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-May-2024 09:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-May-2024 09:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-May-2024 11:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-May-2024 11:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-May-2024 11:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-May-2024 11:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-May-2024 11:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-May-2024 11:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-May-2024 11:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-May-2024 11:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-May-2024 11:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-May-2024 11:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-May-2024 11:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-May-2024 11:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-May-2024 11:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-May-2024 11:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-May-2024 11:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-May-2024 11:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-May-2024 11:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-May-2024 11:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-May-2024 18:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-May-2024 18:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-May-2024 18:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-May-2024 18:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-May-2024 18:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-May-2024 18:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-May-2024 18:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-May-2024 18:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-May-2024 18:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-May-2024 18:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-May-2024 18:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-May-2024 18:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-May-2024 18:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-May-2024 18:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-May-2024 18:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-May-2024 18:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-May-2024 18:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-May-2024 18:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-May-2024 05:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-May-2024 05:48:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-May-2024 05:48:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-May-2024 05:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-May-2024 05:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-May-2024 05:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-May-2024 05:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-May-2024 05:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-May-2024 05:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-May-2024 05:48:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-May-2024 05:48:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-May-2024 05:48:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-May-2024 05:48:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-May-2024 05:48:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-May-2024 05:48:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-May-2024 05:48:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-May-2024 05:48:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-May-2024 05:48:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-May-2024 09:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-May-2024 09:39:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-May-2024 09:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-May-2024 09:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-May-2024 09:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-May-2024 09:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-May-2024 09:39:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-May-2024 09:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-May-2024 09:40:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-May-2024 09:40:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-May-2024 09:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-May-2024 09:40:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-May-2024 09:40:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-May-2024 09:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-May-2024 09:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-May-2024 09:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-May-2024 09:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-May-2024 09:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-May-2024 10:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-May-2024 10:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-May-2024 10:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-May-2024 10:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-May-2024 10:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-May-2024 10:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-May-2024 10:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-May-2024 10:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-May-2024 10:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-May-2024 10:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-May-2024 10:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-May-2024 10:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-May-2024 10:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-May-2024 10:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-May-2024 10:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-May-2024 10:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-May-2024 10:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-May-2024 10:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-May-2024 17:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-May-2024 17:01:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-May-2024 17:01:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-May-2024 17:01:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-May-2024 17:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-May-2024 17:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-May-2024 17:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-May-2024 17:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-May-2024 17:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-May-2024 17:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-May-2024 17:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-May-2024 17:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-May-2024 17:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-May-2024 17:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-May-2024 17:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-May-2024 17:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-May-2024 17:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-May-2024 17:01:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-May-2024 12:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-May-2024 12:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-May-2024 12:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-May-2024 12:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-May-2024 12:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-May-2024 12:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-May-2024 12:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-May-2024 12:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-May-2024 12:10:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-May-2024 12:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-May-2024 12:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-May-2024 12:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-May-2024 12:10:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-May-2024 12:10:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-May-2024 12:10:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-May-2024 12:10:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-May-2024 12:10:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-May-2024 12:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-May-2024 19:32:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-May-2024 19:32:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-May-2024 19:32:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-May-2024 19:32:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-May-2024 19:32:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-May-2024 19:32:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-May-2024 19:32:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-May-2024 19:32:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-May-2024 19:32:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-May-2024 19:32:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-May-2024 19:32:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-May-2024 19:32:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-May-2024 19:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-May-2024 19:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-May-2024 19:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-May-2024 19:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-May-2024 19:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-May-2024 19:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-May-2024 22:30:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-May-2024 22:30:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-May-2024 22:30:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-May-2024 22:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-May-2024 22:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-May-2024 22:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-May-2024 22:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-May-2024 22:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-May-2024 22:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-May-2024 22:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-May-2024 22:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-May-2024 22:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-May-2024 22:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-May-2024 22:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-May-2024 22:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-May-2024 22:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-May-2024 22:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-May-2024 22:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-May-2024 04:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-May-2024 04:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-May-2024 04:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-May-2024 04:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-May-2024 04:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-May-2024 04:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-May-2024 04:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-May-2024 04:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-May-2024 04:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-May-2024 04:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-May-2024 04:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-May-2024 04:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-May-2024 04:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-May-2024 04:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-May-2024 04:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-May-2024 04:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-May-2024 04:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-May-2024 04:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-May-2024 10:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-May-2024 10:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-May-2024 10:05:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-May-2024 10:05:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-May-2024 10:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-May-2024 10:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-May-2024 10:05:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-May-2024 10:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-May-2024 10:05:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-May-2024 10:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-May-2024 10:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-May-2024 10:05:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-May-2024 10:05:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-May-2024 10:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-May-2024 10:05:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-May-2024 10:05:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-May-2024 10:05:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-May-2024 10:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-May-2024 02:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-May-2024 02:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-May-2024 02:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-May-2024 02:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-May-2024 02:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-May-2024 02:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-May-2024 02:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-May-2024 02:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-May-2024 02:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-May-2024 02:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-May-2024 02:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-May-2024 02:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-May-2024 02:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-May-2024 02:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-May-2024 02:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-May-2024 02:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-May-2024 02:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-May-2024 02:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-May-2024 08:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-May-2024 08:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-May-2024 08:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-May-2024 08:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-May-2024 08:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-May-2024 08:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-May-2024 08:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-May-2024 08:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-May-2024 08:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-May-2024 08:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-May-2024 08:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-May-2024 08:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-May-2024 08:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-May-2024 08:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-May-2024 08:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-May-2024 08:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-May-2024 08:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-May-2024 08:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-May-2024 09:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-May-2024 09:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-May-2024 09:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-May-2024 09:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-May-2024 09:18:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-May-2024 09:18:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-May-2024 09:18:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-May-2024 09:18:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-May-2024 09:18:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-May-2024 09:18:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-May-2024 09:18:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-May-2024 09:18:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-May-2024 09:18:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-May-2024 09:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-May-2024 09:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-May-2024 09:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-May-2024 09:18:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-May-2024 09:18:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-May-2024 06:59:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-May-2024 06:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-May-2024 06:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-May-2024 06:59:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-May-2024 06:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-May-2024 06:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-May-2024 06:59:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-May-2024 06:59:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-May-2024 06:59:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-May-2024 06:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-May-2024 06:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-May-2024 06:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-May-2024 06:59:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-May-2024 06:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-May-2024 06:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-May-2024 06:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-May-2024 07:00:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-May-2024 07:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-May-2024 16:04:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-May-2024 16:04:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-May-2024 16:04:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-May-2024 16:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-May-2024 16:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-May-2024 16:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-May-2024 16:04:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-May-2024 16:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-May-2024 16:04:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-May-2024 16:04:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-May-2024 16:04:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-May-2024 16:04:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-May-2024 16:04:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-May-2024 16:04:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-May-2024 16:04:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-May-2024 16:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-May-2024 16:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-May-2024 16:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-May-2024 21:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-May-2024 21:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-May-2024 21:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-May-2024 21:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-May-2024 21:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-May-2024 21:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-May-2024 21:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-May-2024 21:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-May-2024 21:13:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-May-2024 21:13:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-May-2024 21:13:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-May-2024 21:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-May-2024 21:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-May-2024 21:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-May-2024 21:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-May-2024 21:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-May-2024 21:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-May-2024 21:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-May-2024 00:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-May-2024 00:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-May-2024 00:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-May-2024 00:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-May-2024 00:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-May-2024 00:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-May-2024 00:47:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-May-2024 00:47:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-May-2024 00:47:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-May-2024 00:47:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-May-2024 00:47:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-May-2024 00:47:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-May-2024 00:47:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-May-2024 00:47:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-May-2024 00:47:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-May-2024 00:47:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-May-2024 00:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-May-2024 00:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-May-2024 04:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-May-2024 04:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-May-2024 04:24:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-May-2024 04:24:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-May-2024 04:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-May-2024 04:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-May-2024 04:24:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-May-2024 04:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-May-2024 04:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-May-2024 04:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-May-2024 04:24:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-May-2024 04:24:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-May-2024 04:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-May-2024 04:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-May-2024 04:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-May-2024 04:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-May-2024 04:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-May-2024 04:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-May-2024 21:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-May-2024 21:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-May-2024 21:50:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-May-2024 21:50:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-May-2024 21:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-May-2024 21:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-May-2024 21:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-May-2024 21:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-May-2024 21:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-May-2024 21:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-May-2024 21:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-May-2024 21:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-May-2024 21:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-May-2024 21:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-May-2024 21:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-May-2024 21:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-May-2024 21:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-May-2024 21:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-May-2024 20:48:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-May-2024 20:48:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-May-2024 20:48:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-May-2024 20:48:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-May-2024 20:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-May-2024 20:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-May-2024 20:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-May-2024 20:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-May-2024 20:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-May-2024 20:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-May-2024 20:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-May-2024 20:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-May-2024 20:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-May-2024 20:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-May-2024 20:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-May-2024 20:49:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-May-2024 20:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-May-2024 20:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-May-2024 16:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-May-2024 16:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-May-2024 16:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-May-2024 16:55:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-May-2024 16:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-May-2024 16:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-May-2024 16:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-May-2024 16:55:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-May-2024 16:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-May-2024 16:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-May-2024 16:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-May-2024 16:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-May-2024 16:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-May-2024 16:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-May-2024 16:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-May-2024 16:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-May-2024 16:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-May-2024 16:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-May-2024 23:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-May-2024 23:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-May-2024 23:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-May-2024 23:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-May-2024 23:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-May-2024 23:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-May-2024 23:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-May-2024 23:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-May-2024 23:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-May-2024 23:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-May-2024 23:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-May-2024 23:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-May-2024 23:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-May-2024 23:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-May-2024 23:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-May-2024 23:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-May-2024 23:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-May-2024 23:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-May-2024 15:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-May-2024 15:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-May-2024 15:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-May-2024 15:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-May-2024 15:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-May-2024 15:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-May-2024 15:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-May-2024 15:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-May-2024 15:33:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-May-2024 15:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-May-2024 15:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-May-2024 15:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-May-2024 15:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-May-2024 15:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-May-2024 15:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-May-2024 15:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-May-2024 15:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-May-2024 15:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-May-2024 15:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-May-2024 15:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-May-2024 15:57:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-May-2024 15:57:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-May-2024 15:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-May-2024 15:57:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-May-2024 15:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-May-2024 15:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-May-2024 15:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-May-2024 15:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-May-2024 15:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-May-2024 15:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-May-2024 15:57:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-May-2024 15:57:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-May-2024 15:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-May-2024 15:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-May-2024 15:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-May-2024 15:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-May-2024 19:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-May-2024 19:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-May-2024 19:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-May-2024 19:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-May-2024 19:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-May-2024 19:27:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-May-2024 19:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-May-2024 19:27:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-May-2024 19:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-May-2024 19:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-May-2024 19:27:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-May-2024 19:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-May-2024 19:27:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-May-2024 19:27:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-May-2024 19:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-May-2024 19:27:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-May-2024 19:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-May-2024 19:27:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-May-2024 01:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-May-2024 01:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-May-2024 01:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-May-2024 01:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-May-2024 01:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-May-2024 01:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-May-2024 01:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-May-2024 01:39:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-May-2024 01:39:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-May-2024 01:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-May-2024 01:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-May-2024 01:39:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-May-2024 01:39:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-May-2024 01:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-May-2024 01:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-May-2024 01:39:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-May-2024 01:39:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-May-2024 01:39:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-May-2024 12:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-May-2024 12:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-May-2024 12:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-May-2024 12:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-May-2024 12:59:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-May-2024 12:59:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-May-2024 12:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-May-2024 12:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-May-2024 12:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-May-2024 12:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-May-2024 12:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-May-2024 12:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-May-2024 12:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-May-2024 12:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-May-2024 12:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-May-2024 12:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-May-2024 12:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-May-2024 12:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-May-2024 14:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-May-2024 14:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-May-2024 14:39:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-May-2024 14:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-May-2024 14:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-May-2024 14:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-May-2024 14:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-May-2024 14:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-May-2024 14:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-May-2024 14:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-May-2024 14:41:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-May-2024 14:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-May-2024 14:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-May-2024 14:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-May-2024 14:42:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-May-2024 14:42:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-May-2024 14:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-May-2024 14:42:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-May-2024 06:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-May-2024 06:46:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-May-2024 06:46:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-May-2024 06:46:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-May-2024 06:46:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-May-2024 06:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-May-2024 06:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-May-2024 06:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-May-2024 06:46:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-May-2024 06:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-May-2024 06:46:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-May-2024 06:46:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-May-2024 06:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-May-2024 06:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-May-2024 06:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-May-2024 06:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-May-2024 06:46:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-May-2024 06:46:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jun-2024 03:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jun-2024 03:14:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jun-2024 03:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jun-2024 03:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jun-2024 03:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jun-2024 03:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jun-2024 03:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jun-2024 03:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jun-2024 03:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jun-2024 03:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jun-2024 03:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jun-2024 03:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jun-2024 03:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jun-2024 03:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jun-2024 03:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jun-2024 03:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jun-2024 03:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jun-2024 03:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jun-2024 08:58:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jun-2024 08:58:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jun-2024 08:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jun-2024 08:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jun-2024 08:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jun-2024 08:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jun-2024 08:58:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jun-2024 08:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jun-2024 08:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jun-2024 08:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jun-2024 08:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jun-2024 08:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jun-2024 08:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jun-2024 08:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jun-2024 08:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jun-2024 08:58:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jun-2024 08:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jun-2024 08:58:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jun-2024 17:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jun-2024 17:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jun-2024 17:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jun-2024 17:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jun-2024 17:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jun-2024 17:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jun-2024 17:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jun-2024 17:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jun-2024 17:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jun-2024 17:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jun-2024 17:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jun-2024 17:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jun-2024 17:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jun-2024 17:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jun-2024 17:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jun-2024 17:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jun-2024 17:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jun-2024 17:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jun-2024 00:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jun-2024 00:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jun-2024 00:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jun-2024 00:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jun-2024 00:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jun-2024 00:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jun-2024 00:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jun-2024 00:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jun-2024 00:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jun-2024 00:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jun-2024 00:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jun-2024 00:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jun-2024 00:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jun-2024 00:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jun-2024 00:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jun-2024 00:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jun-2024 00:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jun-2024 00:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jun-2024 08:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jun-2024 08:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jun-2024 08:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jun-2024 08:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jun-2024 08:15:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jun-2024 08:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jun-2024 08:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jun-2024 08:15:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jun-2024 08:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jun-2024 08:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jun-2024 08:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jun-2024 08:16:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jun-2024 08:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jun-2024 08:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jun-2024 08:16:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jun-2024 08:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jun-2024 08:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jun-2024 08:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jun-2024 12:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jun-2024 12:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jun-2024 12:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jun-2024 12:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jun-2024 12:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jun-2024 12:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jun-2024 12:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jun-2024 12:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jun-2024 12:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jun-2024 12:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jun-2024 12:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jun-2024 12:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jun-2024 12:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jun-2024 12:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jun-2024 12:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jun-2024 12:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jun-2024 12:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jun-2024 12:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jun-2024 15:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jun-2024 15:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jun-2024 15:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jun-2024 15:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jun-2024 15:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jun-2024 15:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jun-2024 15:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jun-2024 15:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jun-2024 15:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jun-2024 15:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jun-2024 15:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jun-2024 15:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jun-2024 15:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jun-2024 15:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jun-2024 15:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jun-2024 15:36:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jun-2024 15:36:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jun-2024 15:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jun-2024 16:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jun-2024 16:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jun-2024 16:16:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jun-2024 16:16:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jun-2024 16:16:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jun-2024 16:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jun-2024 16:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jun-2024 16:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jun-2024 16:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jun-2024 16:16:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jun-2024 16:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jun-2024 16:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jun-2024 16:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jun-2024 16:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jun-2024 16:17:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jun-2024 16:17:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jun-2024 16:17:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jun-2024 16:17:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jun-2024 16:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jun-2024 16:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jun-2024 16:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jun-2024 16:17:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jun-2024 16:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jun-2024 16:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jun-2024 16:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jun-2024 16:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jun-2024 16:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jun-2024 16:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jun-2024 16:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jun-2024 16:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jun-2024 16:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jun-2024 16:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jun-2024 16:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jun-2024 16:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jun-2024 16:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jun-2024 16:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jun-2024 16:18:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jun-2024 16:18:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jun-2024 16:18:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jun-2024 16:18:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jun-2024 16:18:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jun-2024 16:18:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jun-2024 16:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jun-2024 16:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jun-2024 16:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jun-2024 16:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jun-2024 16:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jun-2024 16:18:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jun-2024 16:19:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jun-2024 16:19:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jun-2024 16:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jun-2024 16:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jun-2024 16:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jun-2024 16:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jun-2024 16:19:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jun-2024 16:19:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jun-2024 16:19:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jun-2024 16:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jun-2024 16:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jun-2024 16:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jun-2024 16:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jun-2024 16:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jun-2024 16:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jun-2024 16:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jun-2024 16:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jun-2024 16:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jun-2024 16:19:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jun-2024 16:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jun-2024 16:19:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jun-2024 16:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jun-2024 16:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jun-2024 16:19:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jun-2024 02:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jun-2024 02:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jun-2024 02:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jun-2024 02:44:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jun-2024 02:44:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jun-2024 02:44:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jun-2024 02:44:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jun-2024 02:44:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jun-2024 02:44:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jun-2024 02:44:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jun-2024 02:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jun-2024 02:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jun-2024 02:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jun-2024 02:44:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jun-2024 02:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jun-2024 02:44:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jun-2024 02:44:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jun-2024 02:44:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jun-2024 03:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jun-2024 03:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jun-2024 03:21:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jun-2024 03:21:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jun-2024 03:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jun-2024 03:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jun-2024 03:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jun-2024 03:21:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jun-2024 03:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jun-2024 03:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jun-2024 03:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jun-2024 03:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jun-2024 03:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jun-2024 03:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jun-2024 03:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jun-2024 03:21:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jun-2024 03:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jun-2024 03:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 05:12:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 05:12:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 05:12:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 05:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 05:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 05:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 05:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 05:12:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 05:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 05:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 05:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 05:12:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 05:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 05:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 05:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 05:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 05:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 05:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 07:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 08:00:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 08:00:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 08:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 08:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 08:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 08:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 08:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 08:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 08:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 08:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 08:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 08:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 08:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 08:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 08:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 08:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 08:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 12:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 12:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 12:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 12:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 12:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 12:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 12:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 12:11:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 12:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 12:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 12:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 12:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 12:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 12:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 12:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 12:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 12:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 12:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 15:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 15:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 15:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 15:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 15:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 15:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 15:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 15:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 15:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 15:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 15:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 15:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 15:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 15:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 15:33:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 15:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 15:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 15:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 18:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 18:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 18:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 18:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 18:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 18:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 18:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 18:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 18:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 18:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 18:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 18:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 18:12:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 18:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 18:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 18:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 18:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 18:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 18:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 18:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 18:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 18:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 18:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 18:58:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 18:58:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 18:58:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 18:59:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 18:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 18:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 18:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 18:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 18:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 18:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 18:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 18:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 18:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 18:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 18:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 18:59:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 18:59:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 18:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 18:59:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 18:59:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 18:59:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 18:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 18:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 18:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 19:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 19:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 19:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 19:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 19:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 19:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 19:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 19:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 19:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jun-2024 19:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 19:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jun-2024 19:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 19:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jun-2024 19:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 19:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jun-2024 19:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 19:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jun-2024 19:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 19:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jun-2024 19:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 19:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jun-2024 19:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 19:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jun-2024 19:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 19:02:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jun-2024 19:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 19:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jun-2024 19:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 19:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jun-2024 19:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 19:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jun-2024 19:02:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 19:02:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jun-2024 19:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 19:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jun-2024 19:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 19:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jun-2024 19:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 19:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jun-2024 19:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 19:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jun-2024 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jun-2024 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jun-2024 16:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jun-2024 16:21:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jun-2024 16:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jun-2024 16:21:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jun-2024 16:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jun-2024 16:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jun-2024 16:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jun-2024 16:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jun-2024 16:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jun-2024 16:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jun-2024 16:21:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jun-2024 16:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jun-2024 16:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jun-2024 16:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jun-2024 16:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jun-2024 16:21:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jun-2024 16:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jun-2024 16:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jun-2024 14:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jun-2024 14:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jun-2024 14:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jun-2024 14:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jun-2024 14:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jun-2024 14:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jun-2024 14:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jun-2024 14:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jun-2024 14:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jun-2024 14:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jun-2024 14:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jun-2024 14:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jun-2024 14:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jun-2024 14:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jun-2024 14:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jun-2024 14:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jun-2024 14:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jun-2024 14:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jun-2024 21:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jun-2024 21:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jun-2024 21:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jun-2024 21:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jun-2024 21:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jun-2024 21:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jun-2024 21:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jun-2024 21:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jun-2024 21:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jun-2024 21:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jun-2024 21:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jun-2024 21:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jun-2024 21:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jun-2024 21:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jun-2024 21:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jun-2024 21:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jun-2024 21:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jun-2024 21:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jun-2024 03:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jun-2024 03:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jun-2024 03:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jun-2024 03:45:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jun-2024 03:45:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jun-2024 03:45:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jun-2024 03:45:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jun-2024 03:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jun-2024 03:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jun-2024 03:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jun-2024 03:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jun-2024 03:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jun-2024 03:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jun-2024 03:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jun-2024 03:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jun-2024 03:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jun-2024 03:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jun-2024 03:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jun-2024 06:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jun-2024 06:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jun-2024 06:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jun-2024 06:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jun-2024 06:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jun-2024 06:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jun-2024 06:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jun-2024 06:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jun-2024 06:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jun-2024 06:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jun-2024 06:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jun-2024 06:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jun-2024 06:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jun-2024 06:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jun-2024 06:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jun-2024 06:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jun-2024 06:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jun-2024 06:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jun-2024 23:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jun-2024 23:55:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jun-2024 23:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jun-2024 23:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jun-2024 23:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jun-2024 23:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jun-2024 23:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jun-2024 23:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jun-2024 23:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jun-2024 23:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jun-2024 23:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jun-2024 23:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jun-2024 23:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jun-2024 23:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jun-2024 23:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jun-2024 23:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jun-2024 23:56:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jun-2024 23:56:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Jun-2024 11:01:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jun-2024 11:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Jun-2024 11:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Jun-2024 11:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Jun-2024 11:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Jun-2024 11:01:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Jun-2024 11:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Jun-2024 11:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Jun-2024 11:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Jun-2024 11:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Jun-2024 11:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Jun-2024 11:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Jun-2024 11:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Jun-2024 11:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Jun-2024 11:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Jun-2024 11:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Jun-2024 11:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Jun-2024 11:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Jun-2024 12:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jun-2024 12:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Jun-2024 12:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Jun-2024 12:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Jun-2024 12:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Jun-2024 12:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Jun-2024 12:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Jun-2024 12:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Jun-2024 12:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Jun-2024 12:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Jun-2024 12:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Jun-2024 12:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Jun-2024 12:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Jun-2024 12:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Jun-2024 12:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Jun-2024 12:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Jun-2024 12:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Jun-2024 12:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Jun-2024 21:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jun-2024 21:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Jun-2024 21:42:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Jun-2024 21:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Jun-2024 21:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Jun-2024 21:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Jun-2024 21:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Jun-2024 21:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Jun-2024 21:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Jun-2024 21:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Jun-2024 21:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Jun-2024 21:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Jun-2024 21:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Jun-2024 21:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Jun-2024 21:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Jun-2024 21:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Jun-2024 21:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Jun-2024 21:42:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Jun-2024 01:49:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Jun-2024 01:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Jun-2024 01:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Jun-2024 01:49:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Jun-2024 01:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Jun-2024 01:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Jun-2024 01:50:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Jun-2024 01:50:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Jun-2024 01:50:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Jun-2024 01:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Jun-2024 01:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Jun-2024 01:50:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Jun-2024 01:50:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Jun-2024 01:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Jun-2024 01:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Jun-2024 01:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Jun-2024 01:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Jun-2024 01:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Jun-2024 17:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Jun-2024 17:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Jun-2024 17:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Jun-2024 17:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Jun-2024 17:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Jun-2024 17:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Jun-2024 17:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Jun-2024 17:29:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Jun-2024 17:29:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Jun-2024 17:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Jun-2024 17:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Jun-2024 17:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Jun-2024 17:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Jun-2024 17:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Jun-2024 17:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Jun-2024 17:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Jun-2024 17:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Jun-2024 17:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jun-2024 07:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jun-2024 07:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jun-2024 07:17:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jun-2024 07:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jun-2024 07:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jun-2024 07:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jun-2024 07:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jun-2024 07:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jun-2024 07:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jun-2024 07:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jun-2024 07:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jun-2024 07:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jun-2024 07:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jun-2024 07:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jun-2024 07:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jun-2024 07:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jun-2024 07:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jun-2024 07:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jun-2024 16:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Jun-2024 16:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Jun-2024 16:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Jun-2024 16:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Jun-2024 16:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Jun-2024 16:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Jun-2024 16:26:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Jun-2024 16:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Jun-2024 16:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jun-2024 16:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Jun-2024 16:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jun-2024 16:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Jun-2024 16:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jun-2024 16:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Jun-2024 16:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jun-2024 16:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Jun-2024 16:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Jun-2024 16:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Jun-2024 16:49:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Jun-2024 16:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Jun-2024 16:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Jun-2024 16:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Jun-2024 16:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Jun-2024 16:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Jun-2024 16:49:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Jun-2024 16:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Jun-2024 16:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Jun-2024 16:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Jun-2024 16:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Jun-2024 16:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Jun-2024 16:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Jun-2024 16:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Jun-2024 16:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Jun-2024 16:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Jun-2024 16:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Jun-2024 16:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jun-2024 03:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jun-2024 03:03:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jun-2024 03:03:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jun-2024 03:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jun-2024 03:03:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jun-2024 03:03:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jun-2024 03:03:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jun-2024 03:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jun-2024 03:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jun-2024 03:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jun-2024 03:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jun-2024 03:03:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jun-2024 03:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jun-2024 03:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jun-2024 03:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jun-2024 03:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jun-2024 03:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jun-2024 03:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jun-2024 05:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jun-2024 05:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jun-2024 05:02:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jun-2024 05:02:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jun-2024 05:02:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jun-2024 05:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jun-2024 05:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jun-2024 05:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jun-2024 05:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jun-2024 05:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jun-2024 05:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jun-2024 05:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jun-2024 05:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jun-2024 05:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jun-2024 05:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jun-2024 05:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jun-2024 05:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jun-2024 05:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jun-2024 13:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jun-2024 13:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jun-2024 13:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jun-2024 13:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jun-2024 13:25:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jun-2024 13:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jun-2024 13:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jun-2024 13:25:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jun-2024 13:25:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jun-2024 13:25:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jun-2024 13:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jun-2024 13:25:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jun-2024 13:25:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jun-2024 13:25:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jun-2024 13:25:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jun-2024 13:25:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jun-2024 13:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jun-2024 13:25:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Jun-2024 08:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Jun-2024 08:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Jun-2024 08:42:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Jun-2024 08:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Jun-2024 08:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Jun-2024 08:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Jun-2024 08:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Jun-2024 08:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Jun-2024 08:43:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Jun-2024 08:43:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Jun-2024 08:43:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Jun-2024 08:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Jun-2024 08:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Jun-2024 08:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Jun-2024 08:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Jun-2024 08:44:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Jun-2024 08:45:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Jun-2024 08:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Jun-2024 13:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Jun-2024 13:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Jun-2024 13:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Jun-2024 13:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Jun-2024 13:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Jun-2024 13:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Jun-2024 13:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Jun-2024 13:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Jun-2024 13:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jun-2024 00:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jun-2024 00:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jun-2024 00:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jun-2024 00:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jun-2024 00:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jun-2024 00:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jun-2024 00:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jun-2024 00:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jun-2024 00:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jun-2024 00:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jun-2024 00:16:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jun-2024 00:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jun-2024 00:16:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jun-2024 00:16:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jun-2024 00:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jun-2024 00:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jun-2024 00:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jun-2024 00:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jun-2024 02:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jun-2024 02:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jun-2024 02:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jun-2024 02:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jun-2024 02:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jun-2024 02:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jun-2024 02:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jun-2024 02:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jun-2024 02:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jun-2024 02:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jun-2024 02:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jun-2024 02:33:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jun-2024 02:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jun-2024 02:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jun-2024 02:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jun-2024 02:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jun-2024 02:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jun-2024 02:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jun-2024 07:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jun-2024 07:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jun-2024 07:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jun-2024 07:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jun-2024 07:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jun-2024 07:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jun-2024 07:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jun-2024 07:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jun-2024 07:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jun-2024 07:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jun-2024 07:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jun-2024 07:01:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jun-2024 07:01:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jun-2024 07:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jun-2024 07:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jun-2024 07:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jun-2024 07:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jun-2024 07:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Jun-2024 00:21:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Jun-2024 00:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Jun-2024 00:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Jun-2024 00:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Jun-2024 00:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Jun-2024 00:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Jun-2024 00:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Jun-2024 00:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Jun-2024 00:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Jun-2024 00:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Jun-2024 00:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Jun-2024 00:21:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Jun-2024 00:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Jun-2024 00:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Jun-2024 00:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Jun-2024 00:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Jun-2024 00:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Jun-2024 00:21:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Jun-2024 00:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Jun-2024 00:56:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Jun-2024 00:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Jun-2024 00:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Jun-2024 00:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Jun-2024 00:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Jun-2024 00:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Jun-2024 00:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Jun-2024 00:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Jun-2024 00:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Jun-2024 00:58:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Jun-2024 00:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Jun-2024 00:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Jun-2024 00:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Jun-2024 00:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Jun-2024 00:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Jun-2024 00:59:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Jun-2024 01:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Jun-2024 16:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Jun-2024 16:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Jun-2024 16:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Jun-2024 16:15:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Jun-2024 16:15:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Jun-2024 16:15:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Jun-2024 16:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Jun-2024 16:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Jun-2024 16:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Jun-2024 16:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Jun-2024 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Jun-2024 16:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Jun-2024 16:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Jun-2024 16:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Jun-2024 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Jun-2024 16:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Jun-2024 16:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Jun-2024 16:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Jun-2024 16:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Jun-2024 16:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Jun-2024 16:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Jun-2024 16:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Jun-2024 16:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Jun-2024 16:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Jun-2024 16:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Jun-2024 16:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 02:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 02:10:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 02:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 02:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 02:10:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 02:10:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 02:10:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 02:10:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 02:10:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 02:10:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 02:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 02:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 02:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 02:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 02:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 02:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 02:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 02:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 03:24:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 03:24:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 03:24:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 03:24:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 03:24:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 03:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 03:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 03:24:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 03:24:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 03:24:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 03:24:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 03:24:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 03:24:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 03:24:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 03:24:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 03:24:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 03:24:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 03:24:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 03:24:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 03:24:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 03:24:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 03:24:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 03:24:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 03:24:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 03:24:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 03:24:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 03:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 03:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 03:24:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 03:24:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 03:24:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 03:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 03:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 03:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 03:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 03:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 03:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 03:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 03:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 03:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 03:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 03:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 03:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 03:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 03:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 03:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 03:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 03:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 03:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 03:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 03:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 03:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 03:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 03:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 03:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 03:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 03:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 03:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 03:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 03:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 03:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 03:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 03:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 03:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 03:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 03:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 03:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 03:25:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 03:25:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 03:25:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 03:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 03:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:24:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:24:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:24:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:24:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:25:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:25:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:25:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:25:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:25:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:25:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:26:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:26:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:26:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:26:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:26:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:47:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:47:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:47:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:47:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:47:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:47:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:47:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:47:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:47:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:47:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:48:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:48:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:48:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 04:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 04:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 04:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:48:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 04:48:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:48:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 04:48:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:48:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 04:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 04:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:48:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 04:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 04:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 04:48:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:48:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 04:48:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:48:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 04:48:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:48:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 04:48:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:48:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 04:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 04:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 04:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 04:49:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 04:49:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 17:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 17:29:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 17:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 17:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 17:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 17:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 17:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2024 17:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2024 17:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2024 17:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2024 17:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2024 17:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2024 17:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2024 17:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2024 17:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2024 17:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2024 17:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2024 17:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2024 17:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2024 17:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2024 17:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2024 17:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2024 17:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2024 17:29:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2024 17:29:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jun-2024 18:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jun-2024 18:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jun-2024 18:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jun-2024 18:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jun-2024 18:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jun-2024 18:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jun-2024 18:42:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jun-2024 18:42:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jun-2024 18:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jun-2024 18:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jun-2024 18:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jun-2024 18:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jun-2024 18:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jun-2024 18:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jun-2024 18:43:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jun-2024 18:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jun-2024 18:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jun-2024 18:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Jun-2024 21:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jun-2024 21:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jun-2024 21:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jun-2024 21:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jun-2024 21:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jun-2024 21:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jun-2024 21:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jun-2024 21:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jun-2024 21:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jun-2024 21:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jun-2024 21:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jun-2024 21:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jun-2024 21:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jun-2024 21:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jun-2024 21:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jun-2024 21:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jun-2024 21:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jun-2024 21:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Jun-2024 23:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jun-2024 23:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jun-2024 23:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jun-2024 23:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jun-2024 23:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jun-2024 23:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jun-2024 23:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jun-2024 23:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jun-2024 23:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jun-2024 23:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jun-2024 23:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jun-2024 23:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jun-2024 23:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jun-2024 23:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jun-2024 23:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jun-2024 23:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jun-2024 23:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jun-2024 23:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jun-2024 00:52:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jun-2024 00:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jun-2024 00:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jun-2024 00:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jun-2024 00:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jun-2024 00:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jun-2024 00:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jun-2024 00:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jun-2024 00:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jun-2024 00:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jun-2024 00:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jun-2024 00:54:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jun-2024 00:54:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jun-2024 00:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jun-2024 00:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jun-2024 00:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jun-2024 00:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jun-2024 00:55:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jun-2024 03:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jun-2024 03:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jun-2024 03:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jun-2024 03:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jun-2024 03:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jun-2024 03:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jun-2024 03:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jun-2024 03:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jun-2024 03:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jun-2024 03:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jun-2024 03:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jun-2024 03:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jun-2024 03:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jun-2024 03:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jun-2024 03:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jun-2024 03:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jun-2024 03:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jun-2024 03:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jun-2024 06:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jun-2024 06:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jun-2024 06:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jun-2024 06:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jun-2024 06:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jun-2024 06:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jun-2024 06:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jun-2024 06:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jun-2024 06:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jun-2024 06:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jun-2024 06:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jun-2024 06:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jun-2024 06:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jun-2024 06:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jun-2024 06:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jun-2024 06:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jun-2024 06:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jun-2024 06:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Jun-2024 12:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2024 12:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Jun-2024 12:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Jun-2024 12:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Jun-2024 12:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Jun-2024 12:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Jun-2024 12:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Jun-2024 12:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Jun-2024 12:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Jun-2024 12:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Jun-2024 12:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Jun-2024 12:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Jun-2024 12:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Jun-2024 12:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Jun-2024 12:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Jun-2024 12:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Jun-2024 12:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Jun-2024 12:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Jun-2024 22:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2024 22:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Jun-2024 22:10:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Jun-2024 22:10:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Jun-2024 22:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Jun-2024 22:11:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Jun-2024 22:11:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Jun-2024 22:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Jun-2024 22:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Jun-2024 22:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Jun-2024 22:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Jun-2024 22:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Jun-2024 22:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Jun-2024 22:12:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Jun-2024 22:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Jun-2024 22:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Jun-2024 22:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Jun-2024 22:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jul-2024 06:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jul-2024 06:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jul-2024 06:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jul-2024 06:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jul-2024 06:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jul-2024 06:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jul-2024 06:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jul-2024 06:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jul-2024 06:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jul-2024 06:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jul-2024 06:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jul-2024 06:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jul-2024 06:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jul-2024 06:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jul-2024 06:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jul-2024 06:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jul-2024 06:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jul-2024 06:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jul-2024 01:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jul-2024 01:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jul-2024 01:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jul-2024 01:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jul-2024 01:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2024 01:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jul-2024 01:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jul-2024 01:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jul-2024 01:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jul-2024 01:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jul-2024 01:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jul-2024 01:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jul-2024 01:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2024 01:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jul-2024 01:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2024 01:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jul-2024 01:48:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jul-2024 01:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jul-2024 01:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jul-2024 01:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jul-2024 01:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2024 01:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jul-2024 01:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jul-2024 01:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jul-2024 01:54:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jul-2024 01:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jul-2024 01:54:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2024 01:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2024 11:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jul-2024 11:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jul-2024 11:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jul-2024 11:03:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jul-2024 11:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jul-2024 11:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jul-2024 11:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jul-2024 11:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jul-2024 11:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jul-2024 11:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jul-2024 11:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jul-2024 11:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jul-2024 11:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jul-2024 11:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2024 11:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jul-2024 11:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jul-2024 11:03:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2024 11:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jul-2024 21:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jul-2024 21:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jul-2024 21:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jul-2024 21:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jul-2024 21:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jul-2024 21:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jul-2024 21:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jul-2024 21:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jul-2024 21:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jul-2024 21:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jul-2024 21:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jul-2024 21:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jul-2024 21:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jul-2024 21:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2024 21:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jul-2024 21:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jul-2024 21:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2024 21:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2024 11:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2024 11:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2024 11:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2024 11:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2024 11:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2024 11:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2024 11:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2024 11:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2024 11:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2024 11:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2024 11:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2024 11:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2024 11:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2024 11:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2024 11:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2024 11:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2024 11:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2024 11:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2024 17:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2024 17:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2024 17:16:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2024 17:16:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2024 17:16:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2024 17:16:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2024 17:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2024 17:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2024 17:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2024 17:16:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2024 17:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2024 17:16:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2024 17:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2024 17:16:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2024 17:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2024 17:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2024 17:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2024 17:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2024 20:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2024 20:51:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2024 20:51:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2024 20:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2024 20:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2024 20:51:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2024 20:51:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2024 20:51:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2024 20:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2024 20:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2024 20:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2024 20:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2024 20:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2024 20:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2024 20:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2024 20:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2024 20:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2024 20:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2024 22:37:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2024 22:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2024 22:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2024 22:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2024 22:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2024 22:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2024 22:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2024 22:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2024 22:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2024 22:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2024 22:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2024 22:37:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2024 22:37:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2024 22:37:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2024 22:37:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2024 22:37:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2024 22:37:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2024 22:37:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jul-2024 12:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jul-2024 12:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jul-2024 12:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jul-2024 12:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jul-2024 12:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jul-2024 12:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jul-2024 12:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jul-2024 12:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jul-2024 12:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jul-2024 12:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jul-2024 12:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jul-2024 12:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jul-2024 12:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jul-2024 12:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jul-2024 12:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jul-2024 12:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jul-2024 12:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jul-2024 12:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jul-2024 15:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jul-2024 15:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jul-2024 15:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jul-2024 15:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jul-2024 15:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jul-2024 15:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jul-2024 15:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jul-2024 15:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jul-2024 15:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jul-2024 15:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jul-2024 15:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jul-2024 15:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jul-2024 15:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jul-2024 15:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jul-2024 15:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jul-2024 15:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jul-2024 15:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jul-2024 15:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jul-2024 19:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jul-2024 19:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jul-2024 19:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jul-2024 19:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jul-2024 19:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jul-2024 19:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jul-2024 19:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jul-2024 19:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jul-2024 19:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jul-2024 19:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jul-2024 19:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jul-2024 19:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jul-2024 19:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jul-2024 19:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jul-2024 19:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jul-2024 19:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jul-2024 19:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jul-2024 19:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jul-2024 06:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jul-2024 06:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jul-2024 06:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jul-2024 06:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jul-2024 06:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jul-2024 06:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jul-2024 06:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jul-2024 06:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jul-2024 06:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jul-2024 06:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jul-2024 06:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jul-2024 06:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jul-2024 06:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jul-2024 06:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jul-2024 06:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jul-2024 06:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jul-2024 06:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jul-2024 06:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jul-2024 06:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jul-2024 06:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jul-2024 06:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jul-2024 06:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jul-2024 06:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jul-2024 06:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jul-2024 06:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jul-2024 06:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jul-2024 06:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jul-2024 06:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jul-2024 06:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jul-2024 06:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jul-2024 06:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jul-2024 06:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jul-2024 06:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jul-2024 06:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jul-2024 06:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jul-2024 06:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jul-2024 07:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jul-2024 07:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jul-2024 07:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jul-2024 07:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jul-2024 07:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jul-2024 07:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jul-2024 07:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jul-2024 07:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jul-2024 07:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jul-2024 07:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jul-2024 07:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jul-2024 07:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jul-2024 07:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jul-2024 07:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jul-2024 07:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jul-2024 07:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jul-2024 07:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jul-2024 07:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jul-2024 07:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jul-2024 07:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jul-2024 07:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jul-2024 07:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jul-2024 07:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jul-2024 07:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jul-2024 07:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jul-2024 07:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jul-2024 07:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jul-2024 07:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jul-2024 07:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jul-2024 07:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jul-2024 07:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jul-2024 07:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jul-2024 07:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jul-2024 07:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jul-2024 07:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jul-2024 07:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jul-2024 07:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jul-2024 07:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jul-2024 07:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jul-2024 07:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jul-2024 07:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jul-2024 07:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jul-2024 07:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jul-2024 07:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jul-2024 07:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jul-2024 07:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jul-2024 07:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jul-2024 07:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jul-2024 07:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jul-2024 07:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jul-2024 07:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jul-2024 07:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jul-2024 07:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jul-2024 07:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jul-2024 22:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jul-2024 22:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jul-2024 22:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jul-2024 22:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jul-2024 22:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jul-2024 22:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jul-2024 22:06:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jul-2024 22:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jul-2024 22:06:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jul-2024 22:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jul-2024 22:06:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jul-2024 22:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jul-2024 22:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jul-2024 22:06:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jul-2024 22:06:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jul-2024 22:06:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jul-2024 22:06:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jul-2024 22:06:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jul-2024 03:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jul-2024 03:05:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jul-2024 03:05:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jul-2024 03:05:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jul-2024 03:05:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jul-2024 03:05:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jul-2024 03:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jul-2024 03:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jul-2024 03:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jul-2024 03:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jul-2024 03:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jul-2024 03:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jul-2024 03:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jul-2024 03:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jul-2024 03:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jul-2024 03:06:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jul-2024 03:06:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jul-2024 03:06:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jul-2024 03:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jul-2024 03:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jul-2024 03:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jul-2024 03:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jul-2024 03:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jul-2024 03:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jul-2024 03:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jul-2024 03:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jul-2024 03:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jul-2024 03:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jul-2024 03:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jul-2024 03:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jul-2024 03:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jul-2024 03:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jul-2024 03:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jul-2024 03:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jul-2024 03:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jul-2024 03:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jul-2024 03:06:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jul-2024 03:06:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jul-2024 03:06:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jul-2024 03:06:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jul-2024 03:06:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jul-2024 03:06:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jul-2024 03:06:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jul-2024 03:06:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jul-2024 03:06:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jul-2024 03:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jul-2024 03:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jul-2024 03:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jul-2024 03:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jul-2024 03:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jul-2024 03:06:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jul-2024 03:06:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jul-2024 03:06:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jul-2024 03:06:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jul-2024 03:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jul-2024 03:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jul-2024 03:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jul-2024 03:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jul-2024 03:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jul-2024 03:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jul-2024 03:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jul-2024 03:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jul-2024 03:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jul-2024 03:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jul-2024 03:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jul-2024 03:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jul-2024 03:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jul-2024 03:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jul-2024 03:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jul-2024 03:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jul-2024 03:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jul-2024 03:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jul-2024 03:09:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jul-2024 03:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jul-2024 03:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jul-2024 03:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jul-2024 03:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jul-2024 03:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jul-2024 03:09:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jul-2024 03:09:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jul-2024 03:09:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jul-2024 03:09:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jul-2024 03:09:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jul-2024 03:09:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jul-2024 03:09:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jul-2024 03:09:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jul-2024 03:09:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jul-2024 03:09:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jul-2024 03:09:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jul-2024 03:09:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Jul-2024 17:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Jul-2024 17:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Jul-2024 17:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Jul-2024 17:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Jul-2024 17:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Jul-2024 17:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Jul-2024 17:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Jul-2024 17:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Jul-2024 17:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Jul-2024 17:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Jul-2024 17:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Jul-2024 17:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Jul-2024 17:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Jul-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Jul-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Jul-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Jul-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Jul-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jul-2024 12:18:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jul-2024 12:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jul-2024 12:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jul-2024 12:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jul-2024 12:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jul-2024 12:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jul-2024 12:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jul-2024 12:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jul-2024 12:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jul-2024 12:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jul-2024 12:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jul-2024 12:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jul-2024 12:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jul-2024 12:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jul-2024 12:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jul-2024 12:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jul-2024 12:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jul-2024 12:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jul-2024 12:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jul-2024 12:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jul-2024 12:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jul-2024 12:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jul-2024 12:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jul-2024 12:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jul-2024 12:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jul-2024 12:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jul-2024 12:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jul-2024 12:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jul-2024 12:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jul-2024 12:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jul-2024 12:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jul-2024 12:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jul-2024 12:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jul-2024 12:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jul-2024 12:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jul-2024 12:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jul-2024 21:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jul-2024 21:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jul-2024 21:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jul-2024 21:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jul-2024 21:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jul-2024 21:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jul-2024 21:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jul-2024 21:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jul-2024 21:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jul-2024 21:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jul-2024 21:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jul-2024 21:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jul-2024 21:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jul-2024 21:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jul-2024 21:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jul-2024 21:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jul-2024 21:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jul-2024 21:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jul-2024 05:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jul-2024 05:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jul-2024 05:05:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jul-2024 05:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jul-2024 05:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jul-2024 05:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jul-2024 05:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jul-2024 05:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jul-2024 05:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jul-2024 05:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jul-2024 05:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jul-2024 05:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jul-2024 05:05:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jul-2024 05:05:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jul-2024 05:05:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jul-2024 05:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jul-2024 05:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jul-2024 05:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jul-2024 07:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jul-2024 07:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jul-2024 07:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jul-2024 07:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jul-2024 07:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jul-2024 07:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jul-2024 07:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jul-2024 07:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jul-2024 07:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jul-2024 07:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jul-2024 07:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jul-2024 07:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jul-2024 07:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jul-2024 20:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jul-2024 20:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jul-2024 20:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jul-2024 20:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jul-2024 20:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jul-2024 20:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jul-2024 20:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jul-2024 20:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jul-2024 20:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jul-2024 20:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jul-2024 20:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jul-2024 20:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jul-2024 20:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jul-2024 20:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jul-2024 20:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jul-2024 20:39:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jul-2024 20:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jul-2024 20:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jul-2024 12:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jul-2024 12:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jul-2024 12:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jul-2024 12:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jul-2024 12:59:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jul-2024 12:59:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jul-2024 12:59:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jul-2024 12:59:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jul-2024 12:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jul-2024 12:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jul-2024 12:59:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jul-2024 12:59:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jul-2024 12:59:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jul-2024 12:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jul-2024 12:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jul-2024 12:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jul-2024 12:59:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jul-2024 12:59:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jul-2024 21:46:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jul-2024 21:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jul-2024 21:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jul-2024 21:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jul-2024 21:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jul-2024 21:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jul-2024 21:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jul-2024 21:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jul-2024 21:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jul-2024 21:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jul-2024 21:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jul-2024 21:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jul-2024 21:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jul-2024 21:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jul-2024 21:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jul-2024 21:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jul-2024 21:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jul-2024 21:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jul-2024 02:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jul-2024 02:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jul-2024 02:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jul-2024 02:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jul-2024 02:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jul-2024 02:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jul-2024 02:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jul-2024 02:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jul-2024 02:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jul-2024 02:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jul-2024 02:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jul-2024 02:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jul-2024 02:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jul-2024 02:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jul-2024 02:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jul-2024 02:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jul-2024 02:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jul-2024 02:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jul-2024 06:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jul-2024 06:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jul-2024 06:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jul-2024 06:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jul-2024 06:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jul-2024 06:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jul-2024 06:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jul-2024 06:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jul-2024 06:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jul-2024 06:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jul-2024 06:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jul-2024 06:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jul-2024 06:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jul-2024 06:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jul-2024 06:47:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jul-2024 06:47:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jul-2024 06:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jul-2024 06:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jul-2024 03:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jul-2024 03:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jul-2024 03:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jul-2024 03:03:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jul-2024 03:04:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jul-2024 03:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jul-2024 03:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jul-2024 03:04:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jul-2024 03:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jul-2024 03:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jul-2024 03:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jul-2024 03:05:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jul-2024 03:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jul-2024 03:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jul-2024 03:05:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jul-2024 03:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jul-2024 03:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jul-2024 03:06:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jul-2024 04:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jul-2024 04:34:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jul-2024 04:35:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jul-2024 04:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jul-2024 04:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jul-2024 04:35:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jul-2024 04:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jul-2024 04:36:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jul-2024 04:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jul-2024 04:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jul-2024 04:36:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jul-2024 04:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jul-2024 04:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jul-2024 04:37:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jul-2024 04:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jul-2024 04:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jul-2024 04:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jul-2024 04:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jul-2024 16:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jul-2024 16:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jul-2024 16:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jul-2024 16:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jul-2024 16:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jul-2024 16:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jul-2024 16:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jul-2024 16:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jul-2024 16:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jul-2024 16:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jul-2024 16:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jul-2024 16:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jul-2024 16:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jul-2024 16:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jul-2024 16:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jul-2024 16:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jul-2024 16:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jul-2024 16:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Jul-2024 04:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jul-2024 04:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Jul-2024 04:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Jul-2024 04:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Jul-2024 04:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Jul-2024 04:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Jul-2024 04:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Jul-2024 04:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Jul-2024 04:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Jul-2024 04:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Jul-2024 04:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Jul-2024 04:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Jul-2024 04:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Jul-2024 04:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Jul-2024 04:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Jul-2024 04:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Jul-2024 04:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Jul-2024 04:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Jul-2024 09:34:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jul-2024 09:34:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Jul-2024 09:34:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Jul-2024 09:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Jul-2024 09:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Jul-2024 09:34:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Jul-2024 09:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Jul-2024 09:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Jul-2024 09:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Jul-2024 09:34:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Jul-2024 09:34:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Jul-2024 09:34:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Jul-2024 09:34:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Jul-2024 09:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Jul-2024 09:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Jul-2024 09:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Jul-2024 09:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Jul-2024 09:34:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Jul-2024 10:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jul-2024 10:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Jul-2024 10:57:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Jul-2024 10:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Jul-2024 10:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Jul-2024 10:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Jul-2024 10:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Jul-2024 10:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Jul-2024 10:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Jul-2024 10:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Jul-2024 10:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Jul-2024 10:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Jul-2024 10:57:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Jul-2024 10:57:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Jul-2024 10:57:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Jul-2024 10:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Jul-2024 10:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Jul-2024 10:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Jul-2024 03:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Jul-2024 03:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Jul-2024 03:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Jul-2024 03:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Jul-2024 03:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Jul-2024 03:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Jul-2024 03:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Jul-2024 03:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Jul-2024 03:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Jul-2024 03:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Jul-2024 03:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Jul-2024 03:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Jul-2024 03:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Jul-2024 03:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Jul-2024 03:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Jul-2024 03:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Jul-2024 03:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Jul-2024 03:27:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Jul-2024 10:37:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Jul-2024 10:37:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Jul-2024 10:37:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Jul-2024 10:37:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Jul-2024 10:37:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Jul-2024 10:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Jul-2024 10:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Jul-2024 10:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Jul-2024 10:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Jul-2024 10:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Jul-2024 10:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Jul-2024 10:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Jul-2024 10:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Jul-2024 10:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Jul-2024 10:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Jul-2024 10:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Jul-2024 10:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Jul-2024 10:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Jul-2024 16:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Jul-2024 16:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Jul-2024 16:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Jul-2024 16:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Jul-2024 16:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Jul-2024 16:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Jul-2024 16:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Jul-2024 16:34:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Jul-2024 16:34:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Jul-2024 16:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Jul-2024 16:35:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Jul-2024 16:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Jul-2024 16:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Jul-2024 16:35:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Jul-2024 16:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Jul-2024 16:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Jul-2024 16:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Jul-2024 16:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Jul-2024 22:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Jul-2024 22:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Jul-2024 22:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Jul-2024 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Jul-2024 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Jul-2024 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Jul-2024 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Jul-2024 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Jul-2024 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Jul-2024 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Jul-2024 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Jul-2024 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Jul-2024 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Jul-2024 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Jul-2024 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Jul-2024 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Jul-2024 22:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Jul-2024 22:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jul-2024 08:25:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jul-2024 08:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jul-2024 08:25:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jul-2024 08:25:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jul-2024 08:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jul-2024 08:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jul-2024 08:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jul-2024 08:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jul-2024 08:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jul-2024 08:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jul-2024 08:25:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jul-2024 08:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jul-2024 08:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jul-2024 08:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jul-2024 08:25:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jul-2024 08:25:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jul-2024 08:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jul-2024 08:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Jul-2024 19:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Jul-2024 19:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Jul-2024 19:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Jul-2024 19:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Jul-2024 19:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Jul-2024 19:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Jul-2024 19:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Jul-2024 19:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Jul-2024 19:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Jul-2024 19:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Jul-2024 19:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Jul-2024 19:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Jul-2024 19:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Jul-2024 19:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Jul-2024 19:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Jul-2024 19:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Jul-2024 19:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Jul-2024 19:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jul-2024 00:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jul-2024 00:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jul-2024 00:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jul-2024 00:04:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jul-2024 00:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jul-2024 00:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jul-2024 00:04:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jul-2024 00:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jul-2024 00:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jul-2024 00:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jul-2024 00:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jul-2024 00:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jul-2024 00:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jul-2024 00:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jul-2024 00:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jul-2024 00:04:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jul-2024 00:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jul-2024 00:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jul-2024 12:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jul-2024 12:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jul-2024 12:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jul-2024 12:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jul-2024 12:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jul-2024 12:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jul-2024 12:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jul-2024 12:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jul-2024 12:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jul-2024 12:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jul-2024 12:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jul-2024 12:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jul-2024 12:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jul-2024 12:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jul-2024 12:14:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jul-2024 12:14:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jul-2024 12:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jul-2024 12:14:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jul-2024 17:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jul-2024 17:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jul-2024 17:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jul-2024 17:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jul-2024 17:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jul-2024 17:13:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jul-2024 17:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jul-2024 17:14:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jul-2024 17:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jul-2024 17:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jul-2024 17:14:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jul-2024 17:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jul-2024 17:15:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jul-2024 17:15:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jul-2024 17:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jul-2024 17:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jul-2024 17:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jul-2024 17:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jul-2024 22:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jul-2024 22:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jul-2024 22:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jul-2024 22:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jul-2024 22:53:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jul-2024 22:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jul-2024 22:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jul-2024 22:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jul-2024 22:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jul-2024 22:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jul-2024 22:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jul-2024 22:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jul-2024 22:55:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jul-2024 22:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jul-2024 22:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jul-2024 22:56:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jul-2024 22:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jul-2024 22:56:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2024 04:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2024 04:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2024 04:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2024 04:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2024 04:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2024 04:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2024 04:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2024 04:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2024 04:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2024 04:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2024 04:29:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2024 04:29:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2024 04:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2024 04:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2024 04:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2024 04:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2024 04:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2024 04:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2024 04:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2024 04:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2024 04:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2024 04:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2024 04:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2024 04:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2024 04:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2024 04:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2024 04:29:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2024 04:29:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2024 04:29:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2024 04:29:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2024 04:29:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2024 04:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2024 04:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2024 04:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2024 04:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2024 04:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2024 04:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2024 04:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2024 04:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2024 04:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2024 04:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2024 04:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2024 04:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2024 04:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2024 04:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2024 04:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2024 04:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2024 04:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2024 04:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2024 04:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2024 04:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2024 04:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2024 04:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2024 04:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2024 04:31:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2024 04:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2024 04:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2024 04:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2024 04:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2024 04:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2024 04:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2024 04:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2024 04:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2024 04:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2024 04:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2024 04:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2024 04:32:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2024 04:32:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2024 04:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2024 04:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2024 04:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2024 04:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2024 08:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2024 08:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2024 08:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2024 08:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2024 08:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2024 08:16:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2024 08:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2024 08:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2024 08:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2024 08:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2024 08:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2024 08:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2024 08:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2024 08:17:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2024 08:17:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2024 08:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2024 08:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2024 08:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jul-2024 08:42:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jul-2024 08:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jul-2024 08:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jul-2024 08:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jul-2024 08:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jul-2024 08:42:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Jul-2024 08:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jul-2024 08:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jul-2024 08:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jul-2024 08:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jul-2024 08:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jul-2024 08:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jul-2024 08:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jul-2024 08:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jul-2024 08:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jul-2024 08:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jul-2024 08:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jul-2024 08:43:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jul-2024 18:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jul-2024 18:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jul-2024 18:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jul-2024 18:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jul-2024 18:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jul-2024 18:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jul-2024 18:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jul-2024 18:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jul-2024 18:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jul-2024 18:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jul-2024 18:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jul-2024 18:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jul-2024 18:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jul-2024 18:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jul-2024 18:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jul-2024 18:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jul-2024 18:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jul-2024 18:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jul-2024 04:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jul-2024 04:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jul-2024 04:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jul-2024 04:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jul-2024 04:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jul-2024 04:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jul-2024 04:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jul-2024 04:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jul-2024 04:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jul-2024 04:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jul-2024 04:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jul-2024 04:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jul-2024 04:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jul-2024 04:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jul-2024 04:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jul-2024 04:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jul-2024 04:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jul-2024 04:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jul-2024 13:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jul-2024 13:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jul-2024 13:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jul-2024 13:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jul-2024 13:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jul-2024 13:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jul-2024 13:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jul-2024 13:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jul-2024 13:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jul-2024 13:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jul-2024 13:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jul-2024 13:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jul-2024 13:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jul-2024 13:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jul-2024 13:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jul-2024 13:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jul-2024 13:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jul-2024 13:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Jul-2024 04:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jul-2024 04:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jul-2024 04:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jul-2024 04:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jul-2024 04:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jul-2024 04:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jul-2024 04:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jul-2024 04:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jul-2024 04:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jul-2024 04:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jul-2024 04:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jul-2024 04:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jul-2024 04:36:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jul-2024 04:36:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jul-2024 04:36:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jul-2024 04:36:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jul-2024 04:36:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jul-2024 04:36:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Jul-2024 08:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jul-2024 08:49:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jul-2024 08:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jul-2024 08:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jul-2024 08:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jul-2024 08:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jul-2024 08:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jul-2024 08:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jul-2024 08:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jul-2024 08:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jul-2024 08:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jul-2024 08:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jul-2024 08:49:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jul-2024 08:49:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jul-2024 08:49:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jul-2024 08:49:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jul-2024 08:49:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jul-2024 08:49:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Jul-2024 12:02:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jul-2024 12:02:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jul-2024 12:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jul-2024 12:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jul-2024 12:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jul-2024 12:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jul-2024 12:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jul-2024 12:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jul-2024 12:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jul-2024 12:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jul-2024 12:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jul-2024 12:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jul-2024 12:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jul-2024 12:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jul-2024 12:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jul-2024 12:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jul-2024 12:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jul-2024 12:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 17:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 17:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 17:07:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 17:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 17:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 17:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 17:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 17:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 17:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 17:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 17:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 17:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 17:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 17:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 17:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 17:07:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 17:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 17:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 18:26:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 18:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 18:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 18:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 18:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 18:26:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 18:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 18:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 18:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 18:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 18:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 18:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 18:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 18:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 18:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 18:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 18:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 18:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 18:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 18:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 18:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 18:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 18:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 18:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 18:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 18:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 18:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 18:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 18:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 18:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 18:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 18:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 18:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 18:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 18:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 18:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 18:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 18:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 18:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 18:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 18:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 18:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 18:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 18:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 18:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 18:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 18:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 18:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 18:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 18:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 18:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 18:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 18:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 18:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 19:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 19:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 19:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 19:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 19:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 19:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 19:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 19:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 19:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 19:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 19:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 19:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 19:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 19:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 19:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 19:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 19:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 19:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 19:04:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 19:04:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 19:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 19:04:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 19:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 19:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 19:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 19:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 19:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 19:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 19:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 19:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 19:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 19:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 19:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 19:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 19:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 19:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 19:05:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 19:05:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 19:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 19:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 19:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 19:05:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 19:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 19:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 19:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 19:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 19:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 19:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 19:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 19:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 19:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 19:05:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 19:05:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 19:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Jul-2024 22:28:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jul-2024 22:28:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jul-2024 22:28:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jul-2024 22:28:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jul-2024 22:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jul-2024 22:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jul-2024 22:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jul-2024 22:28:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jul-2024 22:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jul-2024 22:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jul-2024 22:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jul-2024 22:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jul-2024 22:28:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jul-2024 22:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jul-2024 22:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jul-2024 22:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jul-2024 22:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jul-2024 22:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Jul-2024 02:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jul-2024 02:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Jul-2024 02:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Jul-2024 02:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Jul-2024 02:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Jul-2024 02:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Jul-2024 02:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Jul-2024 02:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Jul-2024 02:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Jul-2024 02:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Jul-2024 02:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Jul-2024 02:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Jul-2024 02:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Jul-2024 02:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Jul-2024 02:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Jul-2024 02:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Jul-2024 02:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Jul-2024 02:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jul-2024 10:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jul-2024 10:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jul-2024 10:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jul-2024 10:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jul-2024 10:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jul-2024 10:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jul-2024 10:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jul-2024 10:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jul-2024 10:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jul-2024 10:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jul-2024 10:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jul-2024 10:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jul-2024 10:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jul-2024 10:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jul-2024 10:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jul-2024 10:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jul-2024 10:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jul-2024 10:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Aug-2024 17:46:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Aug-2024 17:47:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Aug-2024 17:47:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Aug-2024 17:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Aug-2024 17:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Aug-2024 17:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Aug-2024 17:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Aug-2024 17:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Aug-2024 17:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Aug-2024 17:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Aug-2024 17:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Aug-2024 17:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Aug-2024 17:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Aug-2024 17:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Aug-2024 17:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Aug-2024 17:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Aug-2024 17:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Aug-2024 17:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Aug-2024 14:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Aug-2024 14:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Aug-2024 14:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Aug-2024 14:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Aug-2024 14:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Aug-2024 14:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Aug-2024 14:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Aug-2024 14:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Aug-2024 14:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Aug-2024 14:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Aug-2024 14:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Aug-2024 14:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Aug-2024 14:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Aug-2024 14:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Aug-2024 14:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Aug-2024 14:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Aug-2024 14:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Aug-2024 14:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Aug-2024 14:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Aug-2024 14:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Aug-2024 14:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Aug-2024 14:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Aug-2024 14:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Aug-2024 14:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Aug-2024 14:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Aug-2024 14:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Aug-2024 14:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Aug-2024 14:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Aug-2024 14:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Aug-2024 14:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Aug-2024 14:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Aug-2024 14:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Aug-2024 14:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Aug-2024 14:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Aug-2024 14:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Aug-2024 14:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Aug-2024 15:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Aug-2024 15:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Aug-2024 15:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Aug-2024 15:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Aug-2024 15:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Aug-2024 15:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Aug-2024 15:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Aug-2024 15:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Aug-2024 15:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Aug-2024 15:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Aug-2024 15:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Aug-2024 15:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Aug-2024 15:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Aug-2024 15:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Aug-2024 15:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Aug-2024 15:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Aug-2024 15:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Aug-2024 15:04:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Aug-2024 19:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Aug-2024 19:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Aug-2024 19:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Aug-2024 19:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Aug-2024 19:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Aug-2024 19:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Aug-2024 19:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Aug-2024 19:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Aug-2024 19:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Aug-2024 19:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Aug-2024 19:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Aug-2024 19:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Aug-2024 19:38:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Aug-2024 19:38:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Aug-2024 19:38:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Aug-2024 19:38:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Aug-2024 19:38:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Aug-2024 19:38:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Aug-2024 01:16:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Aug-2024 01:16:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Aug-2024 01:16:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Aug-2024 01:16:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Aug-2024 01:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Aug-2024 01:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Aug-2024 01:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Aug-2024 01:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Aug-2024 01:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Aug-2024 01:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Aug-2024 01:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Aug-2024 01:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Aug-2024 01:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Aug-2024 01:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Aug-2024 01:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Aug-2024 01:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Aug-2024 01:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Aug-2024 01:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Aug-2024 01:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Aug-2024 01:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Aug-2024 01:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Aug-2024 01:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Aug-2024 01:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Aug-2024 01:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Aug-2024 01:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Aug-2024 01:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Aug-2024 01:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Aug-2024 01:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Aug-2024 01:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Aug-2024 01:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Aug-2024 01:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Aug-2024 01:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Aug-2024 01:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Aug-2024 01:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Aug-2024 01:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Aug-2024 01:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Aug-2024 06:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Aug-2024 06:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Aug-2024 06:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Aug-2024 06:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Aug-2024 06:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Aug-2024 06:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Aug-2024 06:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Aug-2024 06:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Aug-2024 06:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Aug-2024 06:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Aug-2024 06:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Aug-2024 06:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Aug-2024 06:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Aug-2024 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Aug-2024 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Aug-2024 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Aug-2024 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Aug-2024 06:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Aug-2024 16:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Aug-2024 16:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Aug-2024 16:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Aug-2024 16:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Aug-2024 16:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Aug-2024 16:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Aug-2024 16:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Aug-2024 16:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Aug-2024 16:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Aug-2024 16:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Aug-2024 16:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Aug-2024 16:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Aug-2024 16:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Aug-2024 16:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Aug-2024 16:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Aug-2024 16:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Aug-2024 16:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Aug-2024 16:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Aug-2024 17:08:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Aug-2024 17:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Aug-2024 17:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Aug-2024 17:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Aug-2024 17:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Aug-2024 17:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Aug-2024 17:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Aug-2024 17:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Aug-2024 17:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Aug-2024 17:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Aug-2024 17:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Aug-2024 17:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Aug-2024 17:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Aug-2024 17:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Aug-2024 17:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Aug-2024 17:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Aug-2024 17:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Aug-2024 17:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2024 00:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2024 00:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2024 00:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2024 00:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2024 00:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Aug-2024 00:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2024 00:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2024 00:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2024 00:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2024 00:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2024 00:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2024 00:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2024 00:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2024 00:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2024 00:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2024 00:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2024 00:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2024 00:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2024 02:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2024 02:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2024 02:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2024 02:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2024 02:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Aug-2024 02:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2024 02:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2024 02:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2024 02:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2024 02:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2024 02:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2024 02:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2024 02:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2024 02:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2024 02:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2024 02:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2024 02:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2024 02:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2024 05:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2024 05:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2024 05:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2024 05:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2024 05:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Aug-2024 05:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2024 05:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2024 05:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2024 05:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2024 05:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2024 05:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2024 05:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2024 05:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2024 05:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2024 05:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2024 05:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2024 05:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2024 05:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2024 10:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2024 10:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2024 10:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2024 10:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2024 10:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Aug-2024 10:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2024 10:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2024 10:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2024 10:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2024 10:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2024 10:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2024 10:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2024 10:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2024 10:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2024 10:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2024 10:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2024 10:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2024 10:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2024 15:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2024 15:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2024 15:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2024 15:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2024 15:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Aug-2024 15:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2024 15:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2024 15:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2024 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2024 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2024 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2024 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2024 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2024 15:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2024 15:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2024 15:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2024 15:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2024 15:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 12:15:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 12:15:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 12:15:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 12:15:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 12:15:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 12:15:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 12:15:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 12:15:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 12:15:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 12:15:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 12:15:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 12:15:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 12:15:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 12:15:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 12:15:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 12:15:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 12:15:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 12:15:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 16:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 16:09:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 16:09:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 16:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 16:09:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 16:09:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 16:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 16:09:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 16:09:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 16:09:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 16:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 16:09:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 16:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 16:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 16:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 16:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 16:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 16:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 22:08:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 22:08:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 22:08:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 22:08:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 22:08:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 22:08:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 22:08:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 22:08:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 22:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 22:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 22:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 22:08:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 22:08:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 22:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 22:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 22:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 22:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 22:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 22:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 22:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 22:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 22:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 22:11:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 22:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 22:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 22:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 22:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 22:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 22:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 22:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 22:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 22:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 22:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 22:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 22:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 22:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 22:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 22:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 22:11:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 22:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 22:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 22:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 22:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 22:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 22:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 22:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 22:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 22:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 22:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 22:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 22:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 22:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 22:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 22:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 22:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Aug-2024 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 22:12:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 22:12:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Aug-2024 22:12:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 22:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 22:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 22:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Aug-2024 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 22:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Aug-2024 22:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 22:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 22:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 22:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Aug-2024 22:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 22:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Aug-2024 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Aug-2024 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 22:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 22:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 22:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 22:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Aug-2024 22:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 22:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Aug-2024 22:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Aug-2024 22:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 22:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Aug-2024 22:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 22:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Aug-2024 22:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 22:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Aug-2024 22:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 22:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Aug-2024 22:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Aug-2024 22:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Aug-2024 22:12:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Aug-2024 09:23:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Aug-2024 09:24:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Aug-2024 09:24:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Aug-2024 09:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Aug-2024 09:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Aug-2024 09:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Aug-2024 09:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Aug-2024 09:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Aug-2024 09:26:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Aug-2024 09:26:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Aug-2024 09:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Aug-2024 09:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Aug-2024 09:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Aug-2024 09:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Aug-2024 09:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Aug-2024 09:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Aug-2024 09:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Aug-2024 09:28:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Aug-2024 20:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Aug-2024 06:31:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Aug-2024 06:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Aug-2024 06:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Aug-2024 06:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Aug-2024 06:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Aug-2024 06:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Aug-2024 06:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Aug-2024 06:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Aug-2024 06:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Aug-2024 06:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Aug-2024 06:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Aug-2024 06:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Aug-2024 06:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Aug-2024 06:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Aug-2024 06:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Aug-2024 06:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Aug-2024 06:32:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Aug-2024 06:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Aug-2024 08:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Aug-2024 08:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Aug-2024 08:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Aug-2024 08:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Aug-2024 08:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Aug-2024 08:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Aug-2024 08:03:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Aug-2024 08:03:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Aug-2024 08:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Aug-2024 08:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Aug-2024 08:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Aug-2024 08:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Aug-2024 08:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Aug-2024 08:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Aug-2024 08:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Aug-2024 08:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Aug-2024 08:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Aug-2024 08:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Aug-2024 16:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Aug-2024 16:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Aug-2024 16:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Aug-2024 16:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Aug-2024 16:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Aug-2024 16:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Aug-2024 16:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Aug-2024 16:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Aug-2024 16:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Aug-2024 16:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Aug-2024 16:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Aug-2024 16:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Aug-2024 16:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Aug-2024 16:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Aug-2024 16:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Aug-2024 16:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Aug-2024 16:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Aug-2024 16:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 16:36:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 16:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 16:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 16:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 16:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 16:36:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 16:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 16:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 16:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 16:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 16:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 16:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 16:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 16:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 16:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 16:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 16:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 16:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 16:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 16:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 16:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 16:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 16:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 16:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 16:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 16:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 16:36:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 16:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 16:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 16:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 16:36:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 16:36:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 16:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 16:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 16:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 16:37:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 16:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 16:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 16:37:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 16:37:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 16:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 16:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 16:37:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 16:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 16:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 16:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 16:38:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 16:38:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 16:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 16:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 16:38:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 16:38:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 16:38:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 16:38:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 16:38:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 16:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 16:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 16:38:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 16:38:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 16:38:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 16:38:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 16:38:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 16:38:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 16:38:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 16:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 16:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 16:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 16:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 16:38:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 16:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 16:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 16:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 17:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 17:58:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 17:58:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 17:58:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 17:58:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 17:58:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 17:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 17:58:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 17:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 17:58:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 17:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 17:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 17:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 17:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 17:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 17:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 17:58:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 17:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 17:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 17:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 17:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 17:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 17:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 17:59:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 17:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 17:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 17:59:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 17:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 17:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 17:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 17:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 17:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 17:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 17:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 17:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 17:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 18:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 18:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2024 18:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 18:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2024 18:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 18:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2024 18:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 18:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2024 18:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 18:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2024 18:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 18:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2024 18:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 18:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2024 18:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 18:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2024 18:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 18:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2024 18:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 18:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2024 18:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 18:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2024 18:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 18:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2024 18:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 18:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2024 18:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 18:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2024 18:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 18:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2024 18:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 18:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2024 18:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 18:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2024 18:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2024 18:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Aug-2024 07:06:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Aug-2024 07:06:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Aug-2024 07:06:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Aug-2024 07:06:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Aug-2024 07:06:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Aug-2024 07:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Aug-2024 07:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Aug-2024 07:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Aug-2024 07:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Aug-2024 07:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Aug-2024 07:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Aug-2024 07:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Aug-2024 07:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Aug-2024 07:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Aug-2024 07:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Aug-2024 07:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Aug-2024 07:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Aug-2024 07:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2024 08:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2024 08:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2024 08:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2024 08:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2024 08:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2024 08:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2024 08:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2024 08:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2024 08:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2024 08:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2024 08:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2024 08:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2024 08:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2024 08:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2024 08:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2024 08:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2024 08:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2024 08:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Aug-2024 06:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Aug-2024 06:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Aug-2024 06:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Aug-2024 06:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Aug-2024 06:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Aug-2024 06:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Aug-2024 06:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Aug-2024 06:21:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Aug-2024 06:21:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Aug-2024 06:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Aug-2024 06:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Aug-2024 06:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Aug-2024 06:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Aug-2024 06:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Aug-2024 06:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Aug-2024 06:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Aug-2024 06:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Aug-2024 06:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Aug-2024 08:18:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Aug-2024 08:19:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Aug-2024 08:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Aug-2024 08:19:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Aug-2024 08:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Aug-2024 08:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Aug-2024 08:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Aug-2024 08:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Aug-2024 08:19:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Aug-2024 08:19:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Aug-2024 08:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Aug-2024 08:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Aug-2024 08:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Aug-2024 08:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Aug-2024 08:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Aug-2024 08:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Aug-2024 08:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Aug-2024 08:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2024 14:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2024 14:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2024 14:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2024 14:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2024 14:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2024 14:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2024 14:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Aug-2024 14:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2024 14:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2024 14:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2024 14:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2024 14:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2024 14:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2024 14:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2024 14:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2024 14:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2024 14:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2024 14:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2024 04:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2024 04:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2024 04:15:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2024 04:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2024 04:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2024 04:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2024 04:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2024 04:15:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2024 04:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2024 04:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2024 04:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2024 04:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2024 04:15:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2024 04:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2024 04:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2024 04:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2024 04:15:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2024 04:15:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2024 23:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2024 23:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2024 23:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2024 23:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2024 23:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2024 23:16:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2024 23:16:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2024 23:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2024 23:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2024 23:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2024 23:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2024 23:16:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2024 23:16:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2024 23:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2024 23:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2024 23:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2024 23:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2024 23:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2024 05:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2024 05:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2024 05:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2024 05:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2024 05:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2024 05:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2024 05:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2024 05:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2024 05:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2024 05:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2024 05:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2024 05:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2024 05:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2024 05:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2024 05:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2024 05:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2024 05:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2024 05:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2024 10:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2024 10:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2024 10:48:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2024 10:48:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2024 10:48:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2024 10:48:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2024 10:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2024 10:48:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2024 10:48:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2024 10:48:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2024 10:48:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2024 10:48:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2024 10:48:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2024 10:48:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2024 10:48:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2024 10:48:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2024 10:48:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2024 10:48:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2024 11:14:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2024 11:14:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2024 11:14:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2024 11:14:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2024 11:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2024 11:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2024 11:14:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2024 11:14:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2024 11:14:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2024 11:14:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2024 11:14:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2024 11:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2024 11:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2024 11:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2024 11:14:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2024 11:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2024 11:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2024 11:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2024 15:51:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2024 15:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2024 15:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2024 15:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2024 15:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2024 15:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2024 15:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2024 15:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2024 15:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2024 15:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2024 15:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2024 15:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2024 15:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2024 15:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2024 15:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2024 15:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2024 15:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2024 15:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2024 01:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2024 01:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2024 01:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2024 01:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2024 01:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2024 01:27:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2024 01:27:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2024 01:27:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2024 01:27:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2024 01:27:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2024 01:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2024 01:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2024 01:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2024 01:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2024 01:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2024 01:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2024 01:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2024 01:27:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2024 04:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2024 04:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2024 04:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2024 04:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2024 04:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2024 04:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2024 04:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2024 04:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2024 04:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2024 04:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Aug-2024 09:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Aug-2024 09:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Aug-2024 09:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Aug-2024 09:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Aug-2024 09:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Aug-2024 09:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Aug-2024 09:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Aug-2024 20:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2024 20:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2024 20:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2024 20:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2024 20:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Aug-2024 20:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Aug-2024 20:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Aug-2024 20:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Sep-2024 00:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2024 00:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2024 00:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2024 00:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2024 00:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2024 00:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2024 00:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2024 00:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2024 00:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2024 00:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Sep-2024 00:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Sep-2024 00:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Sep-2024 00:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Sep-2024 00:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Sep-2024 00:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Sep-2024 00:14:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Sep-2024 00:14:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Sep-2024 00:14:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2024 10:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2024 10:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2024 10:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2024 10:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2024 10:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2024 10:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2024 10:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2024 10:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2024 10:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2024 10:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2024 10:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2024 15:05:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2024 15:05:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2024 15:05:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2024 15:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2024 15:05:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2024 15:05:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2024 15:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2024 15:05:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2024 15:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2024 15:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2024 15:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2024 15:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2024 15:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2024 15:05:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2024 15:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2024 15:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2024 15:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2024 15:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2024 15:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2024 15:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2024 15:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2024 15:12:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2024 15:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2024 15:12:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2024 15:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2024 15:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2024 15:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2024 15:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2024 15:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2024 15:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2024 15:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2024 15:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2024 15:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2024 15:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2024 15:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2024 15:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2024 15:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2024 15:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2024 15:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2024 15:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2024 15:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2024 15:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2024 15:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2024 15:20:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2024 15:20:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2024 15:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2024 15:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2024 15:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2024 15:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2024 15:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2024 15:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2024 15:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2024 15:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2024 15:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2024 11:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2024 11:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2024 11:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2024 11:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2024 11:12:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2024 11:12:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2024 11:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2024 11:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2024 11:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2024 11:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2024 11:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2024 11:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2024 11:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2024 11:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2024 11:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2024 11:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2024 11:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2024 11:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2024 11:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2024 11:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2024 11:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2024 11:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2024 11:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2024 11:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2024 11:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2024 11:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2024 11:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2024 11:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2024 11:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2024 11:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2024 11:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2024 11:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2024 11:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2024 11:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2024 11:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2024 11:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2024 19:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2024 19:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2024 19:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2024 19:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2024 19:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2024 19:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2024 19:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2024 19:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2024 19:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2024 19:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2024 19:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2024 19:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2024 19:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2024 19:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2024 19:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2024 19:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2024 19:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2024 19:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Sep-2024 00:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Sep-2024 00:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Sep-2024 00:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Sep-2024 00:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Sep-2024 00:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Sep-2024 00:19:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Sep-2024 00:19:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Sep-2024 00:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Sep-2024 00:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Sep-2024 00:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Sep-2024 00:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Sep-2024 00:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Sep-2024 00:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Sep-2024 00:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Sep-2024 00:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Sep-2024 00:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Sep-2024 00:19:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Sep-2024 00:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Sep-2024 00:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Sep-2024 00:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Sep-2024 00:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Sep-2024 00:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Sep-2024 00:20:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Sep-2024 00:20:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Sep-2024 00:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Sep-2024 00:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Sep-2024 00:20:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Sep-2024 00:20:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Sep-2024 00:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Sep-2024 00:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Sep-2024 00:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Sep-2024 00:20:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Sep-2024 00:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Sep-2024 00:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Sep-2024 00:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Sep-2024 00:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Sep-2024 00:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Sep-2024 00:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Sep-2024 00:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Sep-2024 00:21:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Sep-2024 00:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Sep-2024 00:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Sep-2024 00:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Sep-2024 00:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Sep-2024 00:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Sep-2024 00:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Sep-2024 00:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Sep-2024 00:21:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Sep-2024 00:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Sep-2024 00:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Sep-2024 00:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Sep-2024 00:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Sep-2024 00:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Sep-2024 00:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Sep-2024 07:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Sep-2024 07:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Sep-2024 07:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Sep-2024 07:19:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Sep-2024 07:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Sep-2024 07:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Sep-2024 07:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Sep-2024 07:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Sep-2024 07:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Sep-2024 07:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Sep-2024 07:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Sep-2024 07:20:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Sep-2024 07:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Sep-2024 07:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Sep-2024 07:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Sep-2024 07:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Sep-2024 07:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Sep-2024 07:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Sep-2024 11:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Sep-2024 11:12:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Sep-2024 11:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Sep-2024 11:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Sep-2024 11:12:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Sep-2024 11:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Sep-2024 11:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Sep-2024 11:12:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Sep-2024 11:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Sep-2024 11:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Sep-2024 11:12:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Sep-2024 11:12:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Sep-2024 11:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Sep-2024 11:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Sep-2024 11:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Sep-2024 11:12:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Sep-2024 11:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Sep-2024 11:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Sep-2024 11:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Sep-2024 11:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Sep-2024 11:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Sep-2024 11:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Sep-2024 11:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Sep-2024 11:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Sep-2024 11:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Sep-2024 11:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Sep-2024 11:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Sep-2024 11:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Sep-2024 11:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Sep-2024 11:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Sep-2024 11:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Sep-2024 11:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Sep-2024 11:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Sep-2024 11:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Sep-2024 11:38:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Sep-2024 11:38:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Sep-2024 12:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Sep-2024 12:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Sep-2024 12:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Sep-2024 12:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Sep-2024 12:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Sep-2024 12:44:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Sep-2024 12:44:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Sep-2024 12:44:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Sep-2024 12:44:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Sep-2024 12:44:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Sep-2024 12:44:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Sep-2024 16:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Sep-2024 16:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Sep-2024 16:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Sep-2024 16:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Sep-2024 16:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Sep-2024 16:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Sep-2024 16:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Sep-2024 16:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Sep-2024 16:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Sep-2024 16:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Sep-2024 16:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Sep-2024 16:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Sep-2024 16:32:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Sep-2024 16:32:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Sep-2024 16:32:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Sep-2024 16:32:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Sep-2024 16:32:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Sep-2024 16:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Sep-2024 00:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Sep-2024 00:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Sep-2024 00:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Sep-2024 00:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Sep-2024 00:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Sep-2024 00:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Sep-2024 00:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Sep-2024 00:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Sep-2024 00:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Sep-2024 00:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Sep-2024 00:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Sep-2024 00:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Sep-2024 00:59:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Sep-2024 00:59:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Sep-2024 00:59:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Sep-2024 00:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Sep-2024 00:59:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Sep-2024 00:59:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Sep-2024 21:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Sep-2024 21:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Sep-2024 21:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Sep-2024 21:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Sep-2024 21:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Sep-2024 21:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Sep-2024 21:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Sep-2024 21:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Sep-2024 21:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Sep-2024 21:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Sep-2024 21:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Sep-2024 21:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Sep-2024 21:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Sep-2024 21:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Sep-2024 21:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Sep-2024 21:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Sep-2024 21:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Sep-2024 21:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Sep-2024 06:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Sep-2024 06:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Sep-2024 06:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Sep-2024 06:29:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Sep-2024 06:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Sep-2024 06:29:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Sep-2024 06:29:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Sep-2024 06:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Sep-2024 06:29:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Sep-2024 06:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Sep-2024 06:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Sep-2024 06:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Sep-2024 06:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Sep-2024 06:29:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Sep-2024 06:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Sep-2024 06:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Sep-2024 06:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Sep-2024 06:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Sep-2024 15:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Sep-2024 15:37:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Sep-2024 15:37:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Sep-2024 15:37:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Sep-2024 15:37:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Sep-2024 15:37:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Sep-2024 15:37:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Sep-2024 15:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Sep-2024 15:37:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Sep-2024 15:38:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Sep-2024 15:38:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Sep-2024 15:38:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Sep-2024 15:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Sep-2024 15:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Sep-2024 15:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Sep-2024 15:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Sep-2024 15:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Sep-2024 15:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Sep-2024 20:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Sep-2024 20:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Sep-2024 20:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Sep-2024 20:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Sep-2024 20:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Sep-2024 20:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Sep-2024 20:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Sep-2024 20:21:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Sep-2024 20:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Sep-2024 20:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Sep-2024 20:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Sep-2024 20:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Sep-2024 20:21:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Sep-2024 20:21:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Sep-2024 20:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Sep-2024 20:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Sep-2024 20:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Sep-2024 20:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Sep-2024 21:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Sep-2024 21:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Sep-2024 21:37:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Sep-2024 21:37:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Sep-2024 21:37:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Sep-2024 21:37:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Sep-2024 21:38:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Sep-2024 21:38:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Sep-2024 21:38:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Sep-2024 21:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Sep-2024 21:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Sep-2024 21:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Sep-2024 21:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Sep-2024 21:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Sep-2024 21:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Sep-2024 21:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Sep-2024 21:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Sep-2024 21:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Sep-2024 21:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Sep-2024 21:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Sep-2024 21:38:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Sep-2024 21:38:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Sep-2024 21:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Sep-2024 21:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Sep-2024 21:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Sep-2024 21:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Sep-2024 21:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Sep-2024 21:39:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Sep-2024 21:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Sep-2024 21:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Sep-2024 21:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Sep-2024 21:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Sep-2024 21:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Sep-2024 21:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Sep-2024 21:39:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Sep-2024 21:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Sep-2024 21:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Sep-2024 21:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Sep-2024 21:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Sep-2024 21:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Sep-2024 21:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Sep-2024 21:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Sep-2024 21:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Sep-2024 21:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Sep-2024 21:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Sep-2024 21:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Sep-2024 21:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Sep-2024 21:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Sep-2024 21:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Sep-2024 21:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Sep-2024 21:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Sep-2024 21:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Sep-2024 21:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Sep-2024 21:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Sep-2024 21:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Sep-2024 21:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Sep-2024 21:40:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Sep-2024 21:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Sep-2024 21:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Sep-2024 21:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Sep-2024 21:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Sep-2024 21:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Sep-2024 21:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Sep-2024 21:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Sep-2024 21:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Sep-2024 21:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Sep-2024 21:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Sep-2024 21:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Sep-2024 21:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Sep-2024 21:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Sep-2024 21:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Sep-2024 21:41:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Sep-2024 23:58:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Sep-2024 23:58:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Sep-2024 23:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Sep-2024 23:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Sep-2024 23:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Sep-2024 23:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Sep-2024 23:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Sep-2024 23:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Sep-2024 23:58:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Sep-2024 23:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Sep-2024 23:58:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Sep-2024 23:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Sep-2024 23:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Sep-2024 23:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Sep-2024 23:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Sep-2024 23:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Sep-2024 23:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Sep-2024 23:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Sep-2024 23:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Sep-2024 23:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Sep-2024 23:59:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Sep-2024 23:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Sep-2024 23:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Sep-2024 23:59:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Sep-2024 23:59:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Sep-2024 23:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Sep-2024 23:59:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Sep-2024 23:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Sep-2024 23:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2024 00:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2024 00:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2024 00:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2024 00:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2024 00:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2024 00:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2024 00:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2024 00:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2024 00:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2024 00:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2024 00:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2024 00:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2024 00:01:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2024 00:01:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2024 00:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2024 00:01:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2024 00:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2024 00:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2024 00:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2024 00:01:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2024 00:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2024 00:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2024 00:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2024 00:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2024 00:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2024 00:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2024 00:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2024 00:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2024 00:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2024 00:02:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2024 00:02:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2024 00:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2024 00:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2024 00:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2024 00:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2024 00:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2024 00:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2024 00:02:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2024 00:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2024 00:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2024 00:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2024 00:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2024 00:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2024 07:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2024 07:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2024 07:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2024 07:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2024 07:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2024 07:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2024 07:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2024 07:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2024 07:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2024 07:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2024 07:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2024 07:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2024 07:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2024 07:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2024 07:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2024 07:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2024 07:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2024 07:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2024 06:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2024 06:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2024 06:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2024 06:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2024 06:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2024 06:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2024 06:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2024 06:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2024 06:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2024 06:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2024 06:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2024 06:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2024 06:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2024 06:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2024 06:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2024 06:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2024 06:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2024 06:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2024 13:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2024 13:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2024 13:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2024 13:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2024 13:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2024 13:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2024 13:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2024 13:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2024 13:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2024 13:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2024 13:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2024 13:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2024 13:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2024 13:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2024 13:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2024 13:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2024 13:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2024 13:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2024 18:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2024 18:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2024 18:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2024 18:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2024 18:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2024 18:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2024 18:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2024 18:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2024 18:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2024 18:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2024 18:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2024 18:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2024 18:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2024 18:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2024 18:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2024 18:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2024 18:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2024 18:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2024 20:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2024 20:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2024 20:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2024 20:22:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2024 20:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2024 20:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2024 20:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2024 20:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2024 20:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2024 20:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2024 20:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2024 20:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2024 20:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2024 20:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2024 20:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2024 20:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2024 20:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2024 20:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2024 12:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2024 12:19:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2024 12:19:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2024 12:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2024 12:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2024 12:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2024 12:19:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2024 12:19:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2024 12:19:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2024 12:19:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2024 12:19:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2024 12:19:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2024 12:19:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2024 12:19:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2024 12:19:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2024 12:19:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2024 12:19:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2024 12:19:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2024 00:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2024 00:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2024 00:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2024 00:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2024 00:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2024 00:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2024 00:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2024 00:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2024 00:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2024 00:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2024 00:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2024 00:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2024 00:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2024 00:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2024 00:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2024 00:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2024 00:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2024 00:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2024 01:44:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2024 01:44:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2024 01:44:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2024 01:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2024 01:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2024 01:45:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2024 01:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2024 01:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2024 01:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2024 01:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2024 01:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2024 01:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2024 01:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2024 01:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2024 01:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2024 01:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2024 01:45:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2024 01:45:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2024 03:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2024 03:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2024 03:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2024 03:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2024 03:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2024 03:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2024 03:23:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2024 03:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2024 03:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2024 03:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2024 03:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2024 03:23:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2024 03:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2024 03:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2024 03:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2024 03:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2024 03:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2024 03:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2024 14:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2024 14:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2024 14:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2024 14:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2024 14:50:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2024 14:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2024 14:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2024 14:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2024 14:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2024 14:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2024 14:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2024 14:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2024 14:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2024 14:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2024 14:51:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2024 14:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2024 14:51:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2024 14:51:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Oct-2024 13:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Oct-2024 13:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Oct-2024 13:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Oct-2024 13:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Oct-2024 13:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Oct-2024 13:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Oct-2024 13:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Oct-2024 13:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Oct-2024 13:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Oct-2024 13:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Oct-2024 13:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Oct-2024 13:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Oct-2024 13:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Oct-2024 13:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Oct-2024 13:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Oct-2024 13:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Oct-2024 13:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Oct-2024 13:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Oct-2024 05:26:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Oct-2024 05:26:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Oct-2024 05:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Oct-2024 05:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Oct-2024 05:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Oct-2024 05:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Oct-2024 05:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Oct-2024 05:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Oct-2024 05:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Oct-2024 05:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Oct-2024 05:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Oct-2024 05:27:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Oct-2024 05:27:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Oct-2024 05:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Oct-2024 05:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Oct-2024 05:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Oct-2024 05:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Oct-2024 05:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Oct-2024 17:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Oct-2024 17:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Oct-2024 17:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Oct-2024 17:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Oct-2024 17:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Oct-2024 17:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Oct-2024 17:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Oct-2024 17:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Oct-2024 17:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Oct-2024 17:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Oct-2024 17:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Oct-2024 17:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Oct-2024 17:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Oct-2024 17:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Oct-2024 17:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Oct-2024 17:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Oct-2024 17:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Oct-2024 17:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Oct-2024 17:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Oct-2024 17:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Oct-2024 17:31:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Oct-2024 17:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Oct-2024 17:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Oct-2024 17:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Oct-2024 17:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Oct-2024 17:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Oct-2024 17:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Oct-2024 17:31:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Oct-2024 17:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Oct-2024 17:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Oct-2024 17:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Oct-2024 17:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Oct-2024 17:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Oct-2024 17:31:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Oct-2024 17:31:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Oct-2024 17:31:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Oct-2024 17:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Oct-2024 17:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Oct-2024 17:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Oct-2024 17:32:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Oct-2024 17:32:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Oct-2024 17:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Oct-2024 17:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Oct-2024 17:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Oct-2024 17:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Oct-2024 17:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Oct-2024 17:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Oct-2024 17:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Oct-2024 17:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Oct-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Oct-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Oct-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Oct-2024 17:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Oct-2024 17:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Oct-2024 23:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Oct-2024 23:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Oct-2024 23:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Oct-2024 23:29:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Oct-2024 23:29:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Oct-2024 23:29:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Oct-2024 23:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Oct-2024 23:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Oct-2024 23:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Oct-2024 23:29:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Oct-2024 23:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Oct-2024 23:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Oct-2024 23:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Oct-2024 23:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Oct-2024 23:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Oct-2024 23:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Oct-2024 23:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Oct-2024 23:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Oct-2024 23:30:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Oct-2024 23:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Oct-2024 23:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Oct-2024 23:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Oct-2024 23:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Oct-2024 23:30:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Oct-2024 23:30:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Oct-2024 23:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Oct-2024 23:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Oct-2024 23:30:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Oct-2024 23:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Oct-2024 23:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Oct-2024 23:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Oct-2024 23:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Oct-2024 23:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Oct-2024 23:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Oct-2024 23:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Oct-2024 23:30:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Oct-2024 05:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Oct-2024 05:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Oct-2024 05:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Oct-2024 05:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Oct-2024 05:36:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Oct-2024 05:36:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Oct-2024 05:36:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Oct-2024 05:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Oct-2024 05:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Oct-2024 05:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Oct-2024 05:36:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Oct-2024 05:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Oct-2024 05:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Oct-2024 05:36:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Oct-2024 05:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Oct-2024 05:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Oct-2024 05:37:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Oct-2024 05:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Oct-2024 21:32:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Oct-2024 21:32:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Oct-2024 21:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Oct-2024 21:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Oct-2024 21:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Oct-2024 21:32:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Oct-2024 21:32:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Oct-2024 21:32:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Oct-2024 21:32:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Oct-2024 21:32:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Oct-2024 21:32:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Oct-2024 21:32:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Oct-2024 21:32:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Oct-2024 21:32:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Oct-2024 21:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Oct-2024 21:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Oct-2024 21:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Oct-2024 21:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Oct-2024 21:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Oct-2024 21:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Oct-2024 21:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Oct-2024 21:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Oct-2024 21:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Oct-2024 21:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Oct-2024 21:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Oct-2024 21:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Oct-2024 21:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Oct-2024 21:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Oct-2024 21:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Oct-2024 21:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Oct-2024 21:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Oct-2024 21:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Oct-2024 21:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Oct-2024 21:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Oct-2024 21:34:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Oct-2024 21:34:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Oct-2024 21:35:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Oct-2024 21:35:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Oct-2024 21:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Oct-2024 21:35:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Oct-2024 21:35:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Oct-2024 21:35:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Oct-2024 21:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Oct-2024 21:36:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Oct-2024 21:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Oct-2024 21:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Oct-2024 21:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Oct-2024 21:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Oct-2024 21:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Oct-2024 21:36:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Oct-2024 21:36:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Oct-2024 21:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Oct-2024 21:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Oct-2024 21:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Oct-2024 21:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Oct-2024 21:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Oct-2024 21:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Oct-2024 21:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Oct-2024 21:36:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Oct-2024 21:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Oct-2024 21:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Oct-2024 21:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Oct-2024 21:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Oct-2024 21:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Oct-2024 21:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Oct-2024 21:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Oct-2024 21:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Oct-2024 21:36:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Oct-2024 21:36:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Oct-2024 21:36:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Oct-2024 21:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Oct-2024 21:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2024 01:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2024 01:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2024 01:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2024 01:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2024 01:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2024 01:29:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2024 01:29:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2024 01:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2024 01:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2024 01:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2024 01:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2024 01:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2024 01:30:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2024 01:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2024 01:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2024 01:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2024 01:30:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2024 01:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2024 08:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2024 08:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2024 08:40:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2024 08:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2024 08:40:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2024 08:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2024 08:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2024 08:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2024 08:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2024 08:40:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2024 08:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2024 08:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2024 08:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2024 08:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2024 08:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2024 08:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2024 08:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2024 08:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2024 22:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2024 22:37:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2024 22:37:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2024 22:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2024 22:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2024 22:38:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2024 22:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2024 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2024 22:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2024 22:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2024 22:38:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2024 22:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2024 22:38:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2024 22:38:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2024 22:38:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2024 22:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2024 22:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2024 22:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2024 11:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2024 11:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2024 11:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2024 11:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2024 11:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2024 11:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2024 11:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2024 11:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2024 11:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2024 11:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2024 11:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2024 11:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2024 11:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2024 11:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2024 11:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2024 11:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2024 11:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2024 11:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2024 22:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2024 22:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2024 22:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2024 22:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2024 22:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2024 22:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2024 22:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2024 22:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2024 22:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2024 22:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2024 22:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2024 22:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2024 22:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2024 22:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2024 22:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2024 22:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2024 22:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2024 22:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Oct-2024 18:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Oct-2024 18:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Oct-2024 18:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Oct-2024 18:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Oct-2024 18:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Oct-2024 18:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Oct-2024 18:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Oct-2024 18:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Oct-2024 18:45:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Oct-2024 18:45:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Oct-2024 18:45:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Oct-2024 18:45:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Oct-2024 18:45:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Oct-2024 18:45:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Oct-2024 18:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Oct-2024 18:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Oct-2024 18:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Oct-2024 18:45:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2024 13:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2024 13:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2024 13:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2024 13:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2024 13:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2024 13:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2024 13:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2024 13:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2024 13:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2024 13:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2024 13:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2024 13:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2024 13:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2024 13:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2024 13:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2024 13:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2024 13:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2024 13:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2024 18:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2024 18:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2024 18:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2024 18:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2024 18:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2024 18:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2024 18:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2024 18:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2024 18:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2024 18:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2024 18:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2024 18:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2024 18:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2024 18:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2024 18:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2024 18:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2024 18:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2024 18:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Oct-2024 17:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Oct-2024 17:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Oct-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Oct-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Oct-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Oct-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Oct-2024 17:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Oct-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Oct-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Oct-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Oct-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Oct-2024 17:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Oct-2024 17:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Oct-2024 17:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Oct-2024 17:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Oct-2024 17:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Oct-2024 17:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Oct-2024 17:32:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2024 11:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2024 11:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2024 11:36:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2024 11:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2024 11:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2024 11:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2024 11:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2024 11:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2024 11:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2024 11:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2024 11:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2024 11:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2024 11:41:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2024 11:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2024 11:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2024 11:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2024 11:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2024 11:44:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2024 18:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2024 18:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2024 18:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2024 18:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2024 18:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2024 18:32:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2024 18:32:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2024 18:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2024 18:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2024 18:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2024 18:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2024 18:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2024 18:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2024 18:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2024 18:34:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2024 18:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2024 18:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2024 18:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Oct-2024 04:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Oct-2024 04:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Oct-2024 04:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Oct-2024 04:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Oct-2024 04:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Oct-2024 04:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Oct-2024 04:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Oct-2024 04:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Oct-2024 04:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Oct-2024 04:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Oct-2024 04:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Oct-2024 04:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Oct-2024 04:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Oct-2024 04:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Oct-2024 04:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Oct-2024 04:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Oct-2024 04:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Oct-2024 04:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Oct-2024 12:14:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Oct-2024 12:14:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Oct-2024 12:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Oct-2024 12:14:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Oct-2024 12:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Oct-2024 12:14:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Oct-2024 12:14:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Oct-2024 12:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Oct-2024 12:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Oct-2024 12:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Oct-2024 12:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Oct-2024 12:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Oct-2024 12:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Oct-2024 12:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Oct-2024 12:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Oct-2024 12:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Oct-2024 12:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Oct-2024 12:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Nov-2024 18:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Nov-2024 18:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Nov-2024 18:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Nov-2024 18:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Nov-2024 18:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Nov-2024 18:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Nov-2024 18:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Nov-2024 18:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Nov-2024 18:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Nov-2024 18:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Nov-2024 18:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Nov-2024 18:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Nov-2024 18:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Nov-2024 18:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Nov-2024 18:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Nov-2024 18:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Nov-2024 18:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Nov-2024 18:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2024 11:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2024 11:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2024 11:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2024 11:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2024 11:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2024 11:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2024 11:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2024 11:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2024 11:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2024 11:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2024 11:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2024 11:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2024 11:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2024 11:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2024 11:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2024 11:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2024 11:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2024 11:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Nov-2024 01:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Nov-2024 01:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Nov-2024 01:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Nov-2024 01:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Nov-2024 01:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Nov-2024 01:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Nov-2024 01:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Nov-2024 01:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Nov-2024 01:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Nov-2024 01:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Nov-2024 01:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Nov-2024 01:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Nov-2024 01:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Nov-2024 01:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Nov-2024 01:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Nov-2024 01:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Nov-2024 01:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Nov-2024 01:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Nov-2024 18:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Nov-2024 18:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Nov-2024 18:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Nov-2024 18:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Nov-2024 18:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Nov-2024 18:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Nov-2024 18:01:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Nov-2024 18:01:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Nov-2024 18:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Nov-2024 18:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Nov-2024 18:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Nov-2024 18:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Nov-2024 18:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Nov-2024 18:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Nov-2024 18:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Nov-2024 18:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Nov-2024 18:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Nov-2024 18:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Nov-2024 02:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Nov-2024 02:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Nov-2024 02:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Nov-2024 02:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Nov-2024 02:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Nov-2024 02:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Nov-2024 02:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Nov-2024 02:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Nov-2024 02:10:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Nov-2024 02:10:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Nov-2024 02:10:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Nov-2024 02:10:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Nov-2024 02:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Nov-2024 02:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Nov-2024 02:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Nov-2024 02:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Nov-2024 02:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Nov-2024 02:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Nov-2024 16:26:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Nov-2024 16:26:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Nov-2024 16:26:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Nov-2024 16:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Nov-2024 16:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Nov-2024 16:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Nov-2024 16:26:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Nov-2024 16:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Nov-2024 16:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Nov-2024 16:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Nov-2024 16:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Nov-2024 16:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Nov-2024 16:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Nov-2024 16:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Nov-2024 16:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Nov-2024 16:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Nov-2024 16:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Nov-2024 16:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2024 05:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2024 05:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2024 05:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2024 05:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2024 05:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2024 05:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2024 05:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2024 05:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2024 05:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2024 05:37:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2024 05:37:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2024 05:37:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2024 05:37:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2024 05:37:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2024 05:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2024 05:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2024 05:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2024 05:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2024 10:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2024 10:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2024 10:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2024 10:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2024 10:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2024 10:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2024 10:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2024 10:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2024 10:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2024 10:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2024 10:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2024 10:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2024 10:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2024 10:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2024 10:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2024 10:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2024 10:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2024 10:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Nov-2024 03:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Nov-2024 03:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Nov-2024 03:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Nov-2024 03:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Nov-2024 03:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Nov-2024 03:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Nov-2024 03:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Nov-2024 03:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Nov-2024 03:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Nov-2024 03:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Nov-2024 03:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Nov-2024 03:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Nov-2024 03:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Nov-2024 03:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Nov-2024 03:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Nov-2024 03:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Nov-2024 03:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Nov-2024 03:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Nov-2024 09:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Nov-2024 09:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Nov-2024 09:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Nov-2024 09:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Nov-2024 09:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Nov-2024 09:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Nov-2024 09:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Nov-2024 09:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Nov-2024 09:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Nov-2024 09:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Nov-2024 09:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Nov-2024 09:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Nov-2024 09:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Nov-2024 09:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Nov-2024 09:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Nov-2024 09:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Nov-2024 09:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Nov-2024 09:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Nov-2024 15:32:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Nov-2024 15:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Nov-2024 15:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Nov-2024 15:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Nov-2024 15:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Nov-2024 15:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Nov-2024 15:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Nov-2024 15:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Nov-2024 15:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Nov-2024 15:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Nov-2024 15:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Nov-2024 15:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Nov-2024 15:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Nov-2024 15:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Nov-2024 15:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Nov-2024 15:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Nov-2024 15:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Nov-2024 15:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Nov-2024 10:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Nov-2024 10:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Nov-2024 10:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Nov-2024 10:23:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Nov-2024 10:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Nov-2024 10:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Nov-2024 10:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Nov-2024 10:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Nov-2024 10:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Nov-2024 10:25:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Nov-2024 10:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Nov-2024 10:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Nov-2024 10:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Nov-2024 10:25:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Nov-2024 10:25:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Nov-2024 10:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Nov-2024 10:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Nov-2024 10:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Nov-2024 11:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Nov-2024 11:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Nov-2024 11:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Nov-2024 11:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Nov-2024 11:14:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Nov-2024 11:14:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Nov-2024 11:14:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Nov-2024 11:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Nov-2024 11:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Nov-2024 11:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Nov-2024 11:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Nov-2024 11:14:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Nov-2024 11:14:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Nov-2024 20:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Nov-2024 20:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Nov-2024 20:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Nov-2024 20:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Nov-2024 20:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Nov-2024 20:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Nov-2024 20:49:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Nov-2024 20:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Nov-2024 20:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Nov-2024 20:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Nov-2024 20:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Nov-2024 20:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Nov-2024 20:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Nov-2024 20:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Nov-2024 20:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Nov-2024 20:49:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2024 05:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Nov-2024 05:24:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Nov-2024 05:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Nov-2024 05:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Nov-2024 05:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Nov-2024 05:24:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Nov-2024 05:24:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Nov-2024 05:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Nov-2024 05:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2024 05:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2024 05:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Nov-2024 05:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Nov-2024 05:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Nov-2024 05:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Nov-2024 05:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Nov-2024 05:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Nov-2024 10:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Nov-2024 10:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Nov-2024 10:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Nov-2024 10:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Nov-2024 10:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Nov-2024 10:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Nov-2024 10:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Nov-2024 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Nov-2024 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Nov-2024 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Nov-2024 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Nov-2024 10:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Nov-2024 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Nov-2024 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Nov-2024 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Nov-2024 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Nov-2024 10:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Nov-2024 10:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Nov-2024 11:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Nov-2024 11:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Nov-2024 11:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Nov-2024 11:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Nov-2024 11:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Nov-2024 11:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Nov-2024 11:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Nov-2024 11:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Nov-2024 11:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Nov-2024 11:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Nov-2024 11:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Nov-2024 11:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Nov-2024 11:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Nov-2024 11:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Nov-2024 11:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Nov-2024 11:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Nov-2024 11:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Nov-2024 11:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Nov-2024 12:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Nov-2024 12:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Nov-2024 12:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Nov-2024 12:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Nov-2024 12:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Nov-2024 12:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Nov-2024 12:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Nov-2024 12:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Nov-2024 12:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Nov-2024 12:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Nov-2024 12:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Nov-2024 12:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Nov-2024 12:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Nov-2024 12:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Nov-2024 12:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Nov-2024 12:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Nov-2024 12:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Nov-2024 12:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Nov-2024 00:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Nov-2024 00:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Nov-2024 00:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Nov-2024 00:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Nov-2024 00:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Nov-2024 00:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Nov-2024 00:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Nov-2024 00:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Nov-2024 00:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Nov-2024 00:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Nov-2024 00:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Nov-2024 00:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Nov-2024 00:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Nov-2024 00:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Nov-2024 00:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Nov-2024 00:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Nov-2024 00:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Nov-2024 00:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Nov-2024 20:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Nov-2024 20:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Nov-2024 20:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Nov-2024 20:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Nov-2024 20:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Nov-2024 20:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Nov-2024 20:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Nov-2024 20:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Nov-2024 20:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Nov-2024 20:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Nov-2024 20:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Nov-2024 20:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Nov-2024 20:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Nov-2024 20:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Nov-2024 20:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Nov-2024 20:06:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Nov-2024 20:06:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Nov-2024 20:06:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Nov-2024 17:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Nov-2024 17:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Nov-2024 17:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Nov-2024 17:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Nov-2024 17:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Nov-2024 17:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Nov-2024 17:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Nov-2024 17:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Nov-2024 17:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Nov-2024 17:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Nov-2024 17:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Nov-2024 17:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Nov-2024 17:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Nov-2024 17:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Nov-2024 17:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Nov-2024 17:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Nov-2024 17:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Nov-2024 17:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Nov-2024 20:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Nov-2024 20:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Nov-2024 20:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Nov-2024 20:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Nov-2024 20:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Nov-2024 20:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Nov-2024 20:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Nov-2024 20:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Nov-2024 20:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Nov-2024 20:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Nov-2024 20:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Nov-2024 20:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Nov-2024 20:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Nov-2024 20:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Nov-2024 20:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Nov-2024 20:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Nov-2024 20:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Nov-2024 20:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Nov-2024 20:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Nov-2024 20:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Nov-2024 20:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Nov-2024 20:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Nov-2024 20:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Nov-2024 20:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Nov-2024 20:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Nov-2024 20:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Nov-2024 20:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Nov-2024 20:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Nov-2024 20:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Nov-2024 20:49:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Nov-2024 20:49:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Nov-2024 20:49:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Nov-2024 20:49:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Nov-2024 20:49:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Nov-2024 20:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Nov-2024 20:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Nov-2024 04:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Nov-2024 04:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Nov-2024 04:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Nov-2024 04:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Nov-2024 04:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Nov-2024 04:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Nov-2024 04:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Nov-2024 04:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Nov-2024 04:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Nov-2024 04:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Nov-2024 04:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Nov-2024 04:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Nov-2024 04:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Nov-2024 04:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Nov-2024 04:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Nov-2024 04:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Nov-2024 04:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Nov-2024 04:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Dec-2024 11:42:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Dec-2024 11:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Dec-2024 11:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Dec-2024 11:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Dec-2024 11:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Dec-2024 11:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Dec-2024 11:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Dec-2024 11:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Dec-2024 11:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Dec-2024 11:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Dec-2024 11:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Dec-2024 11:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Dec-2024 11:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Dec-2024 11:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Dec-2024 11:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Dec-2024 11:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Dec-2024 11:42:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Dec-2024 11:42:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2025 12:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2025 12:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2025 12:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2025 12:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2025 12:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2025 12:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2025 12:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2025 12:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2025 12:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2025 12:32:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2025 12:32:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2025 12:32:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2025 12:32:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2025 12:32:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2025 12:32:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2025 12:32:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2025 12:32:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2025 12:32:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2025 04:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2025 04:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2025 04:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2025 04:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2025 04:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2025 04:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2025 04:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2025 04:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2025 04:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2025 04:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2025 04:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2025 04:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2025 04:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2025 04:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2025 04:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2025 04:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2025 04:46:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2025 04:46:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Jan-2025 14:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jan-2025 14:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Jan-2025 14:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Jan-2025 14:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Jan-2025 14:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Jan-2025 14:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Jan-2025 14:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Jan-2025 14:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Jan-2025 14:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Jan-2025 14:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Jan-2025 14:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Jan-2025 14:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Jan-2025 14:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Jan-2025 14:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Jan-2025 14:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Jan-2025 14:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Jan-2025 14:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Jan-2025 14:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Jan-2025 02:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Jan-2025 02:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Jan-2025 02:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Jan-2025 02:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Jan-2025 02:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Jan-2025 02:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Jan-2025 02:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Jan-2025 02:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Jan-2025 02:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Jan-2025 02:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Jan-2025 02:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Jan-2025 02:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Jan-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Jan-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Jan-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Jan-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Jan-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Jan-2025 02:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Jan-2025 22:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Jan-2025 22:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Jan-2025 22:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Jan-2025 22:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Jan-2025 22:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Jan-2025 22:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Jan-2025 22:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Jan-2025 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Jan-2025 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Jan-2025 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Jan-2025 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Jan-2025 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Jan-2025 22:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Jan-2025 22:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Jan-2025 22:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Jan-2025 22:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Jan-2025 22:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Jan-2025 22:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Jan-2025 21:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Jan-2025 21:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Jan-2025 21:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Jan-2025 21:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Jan-2025 21:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Jan-2025 21:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Jan-2025 21:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Jan-2025 21:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Jan-2025 21:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Jan-2025 21:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Jan-2025 21:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Jan-2025 21:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Jan-2025 21:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Jan-2025 21:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Jan-2025 21:21:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Jan-2025 21:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Jan-2025 21:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Jan-2025 21:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Feb-2025 07:28:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Feb-2025 07:28:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Feb-2025 07:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Feb-2025 07:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Feb-2025 07:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Feb-2025 07:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Feb-2025 07:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Feb-2025 07:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Feb-2025 07:29:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Feb-2025 07:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Feb-2025 07:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Feb-2025 07:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Feb-2025 07:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Feb-2025 07:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Feb-2025 07:29:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Feb-2025 07:29:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Feb-2025 07:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Feb-2025 07:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Feb-2025 16:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Feb-2025 16:45:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Feb-2025 16:46:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Feb-2025 16:46:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Feb-2025 16:46:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Feb-2025 16:46:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Feb-2025 16:46:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Feb-2025 16:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Feb-2025 16:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Feb-2025 16:47:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Feb-2025 16:47:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Feb-2025 16:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Feb-2025 16:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Feb-2025 16:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Feb-2025 16:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Feb-2025 16:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Feb-2025 16:47:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Feb-2025 16:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Feb-2025 21:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Feb-2025 21:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Feb-2025 21:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Feb-2025 21:04:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Feb-2025 21:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Feb-2025 21:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Feb-2025 21:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Feb-2025 21:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Feb-2025 21:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Feb-2025 21:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Feb-2025 21:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Feb-2025 21:05:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Feb-2025 21:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Feb-2025 21:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Feb-2025 21:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Feb-2025 21:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Feb-2025 21:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Feb-2025 21:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Feb-2025 17:06:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Feb-2025 17:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Feb-2025 17:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Feb-2025 17:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Feb-2025 17:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Feb-2025 17:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Feb-2025 17:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Feb-2025 17:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Feb-2025 17:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Feb-2025 17:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Feb-2025 17:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Feb-2025 17:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Feb-2025 17:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Feb-2025 17:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Feb-2025 17:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Feb-2025 17:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Feb-2025 17:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Feb-2025 17:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Feb-2025 23:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Feb-2025 23:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Feb-2025 23:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Feb-2025 23:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Feb-2025 23:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Feb-2025 23:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Feb-2025 23:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Feb-2025 23:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Feb-2025 23:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Feb-2025 23:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Feb-2025 23:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Feb-2025 23:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Feb-2025 23:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Feb-2025 23:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Feb-2025 23:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Feb-2025 23:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Feb-2025 23:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Feb-2025 23:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Feb-2025 00:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Feb-2025 00:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Feb-2025 00:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Feb-2025 00:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Feb-2025 00:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Feb-2025 00:36:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Feb-2025 00:37:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Feb-2025 00:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Feb-2025 00:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Feb-2025 00:37:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Feb-2025 00:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Feb-2025 00:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Feb-2025 00:37:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Feb-2025 00:37:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Feb-2025 00:37:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Feb-2025 00:38:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Feb-2025 00:38:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Feb-2025 00:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Feb-2025 12:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Feb-2025 12:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Feb-2025 12:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Feb-2025 12:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Feb-2025 12:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Feb-2025 12:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Feb-2025 12:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Feb-2025 12:54:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Feb-2025 12:54:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Feb-2025 12:54:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Feb-2025 12:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Feb-2025 12:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Feb-2025 12:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Feb-2025 12:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Feb-2025 12:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Feb-2025 12:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Feb-2025 12:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Feb-2025 12:54:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Feb-2025 22:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Feb-2025 22:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Feb-2025 22:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Feb-2025 22:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Feb-2025 22:16:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Feb-2025 22:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Feb-2025 22:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Feb-2025 22:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Feb-2025 22:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Feb-2025 22:16:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Feb-2025 22:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Feb-2025 22:16:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Feb-2025 22:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Feb-2025 22:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Feb-2025 22:17:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Feb-2025 22:17:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Feb-2025 22:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Feb-2025 22:17:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Feb-2025 06:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Feb-2025 06:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Feb-2025 06:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Feb-2025 06:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Feb-2025 06:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Feb-2025 06:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Feb-2025 06:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Feb-2025 06:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Feb-2025 06:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Feb-2025 06:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Feb-2025 06:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Feb-2025 06:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Feb-2025 06:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Feb-2025 06:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Feb-2025 06:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Feb-2025 06:49:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Feb-2025 06:49:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Feb-2025 06:49:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Feb-2025 10:43:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Feb-2025 10:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Feb-2025 10:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Feb-2025 10:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Feb-2025 10:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Feb-2025 10:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Feb-2025 10:43:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Feb-2025 10:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Feb-2025 10:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Feb-2025 10:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Feb-2025 10:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Feb-2025 10:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Feb-2025 10:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Feb-2025 10:44:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Feb-2025 10:44:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Feb-2025 10:44:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Feb-2025 10:44:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Feb-2025 10:44:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Feb-2025 10:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Feb-2025 10:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Feb-2025 10:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Feb-2025 10:45:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Feb-2025 10:45:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Feb-2025 10:45:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Feb-2025 10:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Feb-2025 10:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Feb-2025 10:45:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Feb-2025 10:45:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Feb-2025 10:45:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Feb-2025 10:45:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Feb-2025 10:45:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Feb-2025 10:45:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Feb-2025 10:45:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Feb-2025 10:45:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Feb-2025 10:45:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Feb-2025 10:45:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2025 04:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2025 04:56:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2025 04:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2025 04:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2025 04:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2025 04:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2025 04:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2025 04:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2025 04:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2025 04:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2025 04:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2025 04:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2025 04:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2025 04:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2025 04:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2025 04:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2025 04:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2025 04:56:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2025 15:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2025 15:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2025 15:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2025 15:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2025 15:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2025 15:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2025 15:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2025 15:13:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2025 15:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2025 15:13:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2025 15:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2025 15:13:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2025 15:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2025 15:13:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2025 15:14:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2025 15:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2025 15:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2025 15:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2025 15:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2025 15:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2025 15:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2025 15:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2025 15:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2025 15:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2025 15:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2025 15:32:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2025 15:32:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2025 15:32:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2025 15:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2025 15:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2025 15:32:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2025 15:32:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2025 15:32:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2025 15:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2025 15:32:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2025 15:32:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2025 17:06:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2025 17:06:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2025 17:06:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2025 17:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2025 17:06:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2025 17:06:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2025 17:06:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2025 17:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2025 17:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2025 17:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2025 17:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2025 17:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2025 17:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2025 17:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2025 17:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2025 17:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2025 17:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2025 17:06:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2025 17:08:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2025 17:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2025 17:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2025 17:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2025 17:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2025 17:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2025 17:08:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2025 17:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2025 17:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2025 17:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2025 17:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2025 17:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2025 17:08:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2025 17:08:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2025 17:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2025 17:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2025 17:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2025 17:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Feb-2025 21:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Feb-2025 21:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Feb-2025 21:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Feb-2025 21:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Feb-2025 21:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Feb-2025 21:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Feb-2025 21:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Feb-2025 21:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Feb-2025 21:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Feb-2025 21:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Feb-2025 21:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Feb-2025 21:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Feb-2025 21:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Feb-2025 21:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Feb-2025 21:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Feb-2025 21:22:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Feb-2025 21:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Feb-2025 21:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Feb-2025 03:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Feb-2025 03:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Feb-2025 03:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Feb-2025 03:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Feb-2025 03:43:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Feb-2025 03:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Feb-2025 03:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Feb-2025 03:43:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Feb-2025 03:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Feb-2025 03:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Feb-2025 03:44:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Feb-2025 03:44:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Feb-2025 03:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Feb-2025 03:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Feb-2025 03:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Feb-2025 03:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Feb-2025 03:44:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Feb-2025 03:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Feb-2025 05:10:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Feb-2025 05:10:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Feb-2025 05:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Feb-2025 05:10:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Feb-2025 05:10:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Feb-2025 05:10:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Feb-2025 05:10:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Feb-2025 05:10:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Feb-2025 05:10:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Feb-2025 05:10:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Feb-2025 05:10:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Feb-2025 05:10:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Feb-2025 05:10:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Feb-2025 05:10:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Feb-2025 05:10:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Feb-2025 05:10:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Feb-2025 05:10:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Feb-2025 05:10:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Feb-2025 05:34:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Feb-2025 05:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Feb-2025 05:34:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Feb-2025 05:34:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Feb-2025 05:34:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Feb-2025 05:34:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Feb-2025 05:35:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Feb-2025 05:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Feb-2025 05:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Feb-2025 05:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Feb-2025 05:35:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Feb-2025 05:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Feb-2025 05:35:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Feb-2025 05:35:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Feb-2025 05:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Feb-2025 05:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Feb-2025 05:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Feb-2025 05:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Mar-2025 06:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Mar-2025 06:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Mar-2025 06:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Mar-2025 06:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Mar-2025 06:21:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Mar-2025 06:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Mar-2025 06:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Mar-2025 06:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Mar-2025 06:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Mar-2025 06:21:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Mar-2025 06:21:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Mar-2025 06:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Mar-2025 06:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Mar-2025 06:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Mar-2025 06:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Mar-2025 06:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Mar-2025 06:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Mar-2025 06:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Mar-2025 15:51:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Mar-2025 15:51:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Mar-2025 15:51:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Mar-2025 15:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Mar-2025 15:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Mar-2025 15:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Mar-2025 15:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Mar-2025 15:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Mar-2025 15:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Mar-2025 15:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Mar-2025 15:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Mar-2025 15:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Mar-2025 15:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Mar-2025 15:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Mar-2025 15:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Mar-2025 15:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Mar-2025 15:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Mar-2025 15:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Mar-2025 22:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Mar-2025 22:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Mar-2025 22:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Mar-2025 22:49:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Mar-2025 22:49:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Mar-2025 22:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Mar-2025 22:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Mar-2025 22:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Mar-2025 22:49:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Mar-2025 22:50:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Mar-2025 22:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Mar-2025 22:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Mar-2025 22:50:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Mar-2025 22:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Mar-2025 22:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Mar-2025 22:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Mar-2025 22:50:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Mar-2025 22:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Mar-2025 13:11:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Mar-2025 13:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Mar-2025 13:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Mar-2025 13:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 13:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 13:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 13:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 13:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 13:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 13:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 13:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 13:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 13:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 13:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 13:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 13:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 13:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 13:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 13:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 13:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 13:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 13:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 13:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 13:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 13:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 13:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 13:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Mar-2025 13:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 13:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 13:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Mar-2025 13:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Mar-2025 13:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 13:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 13:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Mar-2025 13:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 13:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Mar-2025 13:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 13:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 13:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 13:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Mar-2025 13:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Mar-2025 13:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 13:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 13:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Mar-2025 13:41:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 13:41:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 13:41:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Mar-2025 13:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 13:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 13:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 13:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 13:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 13:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 13:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 13:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 13:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 13:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 13:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 13:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 13:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 13:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 13:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 13:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 13:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 13:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 13:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 13:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 13:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 13:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 13:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 13:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Mar-2025 13:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 13:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Mar-2025 13:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Mar-2025 13:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 13:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Mar-2025 13:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Mar-2025 13:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 13:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 13:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Mar-2025 13:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 13:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 13:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 13:42:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 13:42:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 13:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 13:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 13:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 13:42:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 13:42:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 13:42:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 13:42:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 13:42:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 13:42:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 13:42:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Mar-2025 13:42:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Mar-2025 13:43:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 13:43:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Mar-2025 13:43:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 13:43:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 13:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 13:43:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 13:43:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 13:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 13:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 13:43:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 13:43:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 13:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 13:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 13:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 13:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 13:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 13:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Mar-2025 13:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Mar-2025 13:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 13:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Mar-2025 13:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 13:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 14:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Mar-2025 14:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Mar-2025 14:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Mar-2025 14:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Mar-2025 14:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Mar-2025 14:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Mar-2025 14:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Mar-2025 14:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Mar-2025 14:56:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Mar-2025 14:56:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Mar-2025 14:57:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Mar-2025 14:57:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Mar-2025 14:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Mar-2025 14:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Mar-2025 14:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Mar-2025 14:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Mar-2025 01:16:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Mar-2025 01:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Mar-2025 01:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Mar-2025 01:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Mar-2025 01:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Mar-2025 01:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Mar-2025 01:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Mar-2025 01:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Mar-2025 01:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Mar-2025 01:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Mar-2025 01:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Mar-2025 01:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Mar-2025 01:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Mar-2025 01:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Mar-2025 01:20:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Mar-2025 01:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Mar-2025 01:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Mar-2025 01:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Mar-2025 09:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Mar-2025 09:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Mar-2025 09:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Mar-2025 09:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Mar-2025 09:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Mar-2025 09:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Mar-2025 09:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Mar-2025 09:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Mar-2025 09:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Mar-2025 09:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Mar-2025 09:33:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Mar-2025 09:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Mar-2025 09:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Mar-2025 09:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Mar-2025 09:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Mar-2025 09:37:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Mar-2025 09:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Mar-2025 09:37:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Apr-2025 04:04:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Apr-2025 04:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Apr-2025 04:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Apr-2025 04:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Apr-2025 04:05:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Apr-2025 04:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Apr-2025 04:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Apr-2025 04:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Apr-2025 04:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Apr-2025 04:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Apr-2025 04:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Apr-2025 04:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Apr-2025 04:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Apr-2025 04:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Apr-2025 04:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Apr-2025 04:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Apr-2025 04:06:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Apr-2025 04:06:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Apr-2025 16:08:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Apr-2025 16:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Apr-2025 16:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Apr-2025 16:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Apr-2025 16:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Apr-2025 16:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Apr-2025 16:09:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Apr-2025 16:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Apr-2025 16:09:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Apr-2025 16:09:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Apr-2025 16:09:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Apr-2025 16:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Apr-2025 16:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Apr-2025 16:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Apr-2025 16:10:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Apr-2025 16:10:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Apr-2025 16:10:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Apr-2025 16:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Apr-2025 22:47:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Apr-2025 22:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Apr-2025 22:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Apr-2025 22:48:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Apr-2025 22:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Apr-2025 22:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Apr-2025 22:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Apr-2025 22:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Apr-2025 22:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Apr-2025 22:49:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Apr-2025 22:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Apr-2025 22:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Apr-2025 22:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Apr-2025 22:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Apr-2025 22:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Apr-2025 22:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Apr-2025 22:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Apr-2025 22:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Apr-2025 12:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Apr-2025 12:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Apr-2025 12:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Apr-2025 12:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Apr-2025 12:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Apr-2025 12:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Apr-2025 12:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Apr-2025 12:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Apr-2025 12:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Apr-2025 12:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Apr-2025 12:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Apr-2025 12:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Apr-2025 12:13:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Apr-2025 12:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Apr-2025 12:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Apr-2025 12:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Apr-2025 12:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Apr-2025 12:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Apr-2025 15:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Apr-2025 15:51:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Apr-2025 15:51:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Apr-2025 15:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Apr-2025 15:51:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Apr-2025 15:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Apr-2025 15:51:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Apr-2025 15:51:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Apr-2025 15:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Apr-2025 15:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Apr-2025 15:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Apr-2025 15:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Apr-2025 15:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Apr-2025 15:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Apr-2025 15:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Apr-2025 15:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Apr-2025 15:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Apr-2025 15:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Apr-2025 11:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Apr-2025 11:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Apr-2025 11:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Apr-2025 11:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Apr-2025 11:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Apr-2025 11:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Apr-2025 11:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Apr-2025 11:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Apr-2025 11:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Apr-2025 11:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Apr-2025 11:17:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Apr-2025 11:17:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Apr-2025 11:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Apr-2025 11:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Apr-2025 11:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Apr-2025 11:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Apr-2025 11:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Apr-2025 11:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Apr-2025 13:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Apr-2025 13:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Apr-2025 13:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Apr-2025 13:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Apr-2025 13:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Apr-2025 13:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Apr-2025 13:41:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Apr-2025 13:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Apr-2025 13:41:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Apr-2025 13:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Apr-2025 13:41:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Apr-2025 13:41:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Apr-2025 13:41:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Apr-2025 13:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Apr-2025 13:41:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Apr-2025 13:41:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Apr-2025 13:41:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Apr-2025 13:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Apr-2025 09:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Apr-2025 09:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Apr-2025 09:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Apr-2025 09:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Apr-2025 09:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Apr-2025 09:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Apr-2025 09:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Apr-2025 09:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Apr-2025 09:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Apr-2025 09:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Apr-2025 09:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Apr-2025 09:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Apr-2025 09:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Apr-2025 09:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Apr-2025 09:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Apr-2025 09:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Apr-2025 09:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Apr-2025 09:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Apr-2025 05:35:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Apr-2025 05:35:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Apr-2025 05:35:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Apr-2025 05:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Apr-2025 05:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Apr-2025 05:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Apr-2025 05:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Apr-2025 05:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Apr-2025 05:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Apr-2025 05:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Apr-2025 05:36:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Apr-2025 05:36:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Apr-2025 05:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Apr-2025 05:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Apr-2025 05:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Apr-2025 05:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Apr-2025 05:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Apr-2025 05:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Apr-2025 16:08:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Apr-2025 16:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Apr-2025 16:09:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Apr-2025 16:09:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Apr-2025 16:09:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Apr-2025 16:09:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Apr-2025 16:09:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Apr-2025 16:09:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Apr-2025 16:09:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Apr-2025 16:09:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Apr-2025 16:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Apr-2025 16:09:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Apr-2025 16:09:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Apr-2025 16:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Apr-2025 16:10:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Apr-2025 16:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Apr-2025 16:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Apr-2025 16:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Apr-2025 19:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Apr-2025 19:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Apr-2025 19:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Apr-2025 19:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Apr-2025 19:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Apr-2025 19:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Apr-2025 19:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Apr-2025 19:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Apr-2025 19:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Apr-2025 19:52:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Apr-2025 19:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Apr-2025 19:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Apr-2025 19:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Apr-2025 19:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Apr-2025 19:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Apr-2025 19:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Apr-2025 19:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Apr-2025 19:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Apr-2025 00:28:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Apr-2025 00:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Apr-2025 00:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Apr-2025 00:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Apr-2025 00:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Apr-2025 00:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Apr-2025 00:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Apr-2025 00:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Apr-2025 00:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Apr-2025 00:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Apr-2025 00:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Apr-2025 00:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Apr-2025 00:29:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Apr-2025 00:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Apr-2025 00:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Apr-2025 00:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Apr-2025 00:30:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Apr-2025 00:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Apr-2025 01:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Apr-2025 01:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Apr-2025 01:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Apr-2025 01:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Apr-2025 01:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Apr-2025 01:29:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Apr-2025 01:29:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Apr-2025 01:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Apr-2025 01:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Apr-2025 01:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Apr-2025 01:30:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Apr-2025 01:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Apr-2025 01:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Apr-2025 01:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Apr-2025 01:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Apr-2025 01:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Apr-2025 01:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Apr-2025 01:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-May-2025 03:09:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-May-2025 03:09:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-May-2025 03:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-May-2025 03:09:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-May-2025 03:10:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-May-2025 03:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-May-2025 03:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-May-2025 03:10:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-May-2025 03:10:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-May-2025 03:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-May-2025 03:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-May-2025 03:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-May-2025 03:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-May-2025 03:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-May-2025 03:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-May-2025 03:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-May-2025 03:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-May-2025 03:10:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-May-2025 04:06:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-May-2025 04:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-May-2025 04:06:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-May-2025 04:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-May-2025 04:06:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-May-2025 04:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-May-2025 04:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-May-2025 04:07:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-May-2025 04:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-May-2025 04:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-May-2025 04:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-May-2025 04:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-May-2025 04:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-May-2025 04:07:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-May-2025 04:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-May-2025 04:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-May-2025 04:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-May-2025 04:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-May-2025 17:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-May-2025 17:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-May-2025 17:25:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-May-2025 17:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-May-2025 17:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-May-2025 17:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-May-2025 17:25:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-May-2025 17:25:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-May-2025 17:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-May-2025 17:25:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-May-2025 17:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-May-2025 17:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-May-2025 17:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-May-2025 17:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-May-2025 17:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-May-2025 17:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-May-2025 17:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-May-2025 17:25:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-May-2025 18:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-May-2025 18:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-May-2025 18:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-May-2025 18:34:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-May-2025 18:34:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-May-2025 18:34:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-May-2025 18:34:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-May-2025 18:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-May-2025 18:34:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-May-2025 18:34:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-May-2025 18:34:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-May-2025 18:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-May-2025 18:34:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-May-2025 18:34:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-May-2025 18:34:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-May-2025 18:34:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-May-2025 18:34:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-May-2025 18:34:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-May-2025 21:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-May-2025 21:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-May-2025 21:12:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-May-2025 21:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-May-2025 21:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-May-2025 21:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-May-2025 21:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-May-2025 21:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-May-2025 21:12:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-May-2025 21:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-May-2025 21:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-May-2025 21:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-May-2025 21:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-May-2025 21:13:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-May-2025 21:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-May-2025 21:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-May-2025 21:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-May-2025 21:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-May-2025 06:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-May-2025 06:33:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-May-2025 06:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-May-2025 06:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-May-2025 06:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-May-2025 06:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-May-2025 06:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-May-2025 06:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-May-2025 06:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-May-2025 06:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-May-2025 06:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-May-2025 06:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-May-2025 06:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-May-2025 06:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-May-2025 06:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-May-2025 06:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-May-2025 06:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-May-2025 06:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-May-2025 15:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-May-2025 15:59:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-May-2025 15:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-May-2025 15:59:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-May-2025 15:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-May-2025 16:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-May-2025 16:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-May-2025 16:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-May-2025 16:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-May-2025 16:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-May-2025 16:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-May-2025 16:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-May-2025 16:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-May-2025 16:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-May-2025 16:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-May-2025 16:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-May-2025 16:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-May-2025 16:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-May-2025 17:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-May-2025 17:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-May-2025 17:04:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-May-2025 17:04:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-May-2025 17:04:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-May-2025 17:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-May-2025 17:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-May-2025 17:04:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-May-2025 17:04:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-May-2025 17:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-May-2025 17:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-May-2025 17:04:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-May-2025 17:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-May-2025 17:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-May-2025 17:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-May-2025 17:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-May-2025 17:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-May-2025 17:04:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-May-2025 23:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-May-2025 23:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-May-2025 23:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-May-2025 23:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-May-2025 23:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-May-2025 23:02:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-May-2025 23:02:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-May-2025 23:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-May-2025 23:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-May-2025 23:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-May-2025 23:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-May-2025 23:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-May-2025 23:03:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-May-2025 23:04:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-May-2025 23:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-May-2025 23:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-May-2025 23:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-May-2025 23:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-May-2025 23:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-May-2025 23:05:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-May-2025 23:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-May-2025 23:06:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-May-2025 23:06:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-May-2025 23:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-May-2025 23:06:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-May-2025 23:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-May-2025 23:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-May-2025 23:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-May-2025 23:07:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-May-2025 23:07:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-May-2025 23:08:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-May-2025 23:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-May-2025 23:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-May-2025 23:08:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-May-2025 23:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-May-2025 23:09:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 00:35:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 00:35:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 00:35:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 00:35:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 00:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 00:35:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 00:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 00:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 00:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 00:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 00:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 00:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 00:37:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 00:37:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 00:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 00:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 00:38:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 00:38:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 00:39:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 00:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 00:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 00:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 00:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 00:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 00:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 00:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 00:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 00:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 00:41:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 00:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 00:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 00:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 00:42:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 00:42:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 00:42:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 00:42:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 01:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 01:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 01:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 01:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 01:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 01:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 01:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 01:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 01:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 01:56:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 01:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 01:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 01:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 01:56:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 01:57:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 01:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 01:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 01:58:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 01:58:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 01:58:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 01:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 01:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 01:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 01:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 01:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 01:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 02:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 02:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 02:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 02:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 02:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 02:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 02:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 02:01:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 02:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 02:02:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 02:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 02:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 02:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 02:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 02:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 02:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 03:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 03:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 03:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 03:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 03:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 03:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 03:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 03:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 03:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 03:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 03:02:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 03:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 03:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 03:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 03:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 03:04:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 03:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 03:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 03:04:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 03:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 03:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 03:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 03:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 03:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 03:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 03:06:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 03:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 03:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 03:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 03:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 04:09:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 04:09:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 04:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 04:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 04:10:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 04:11:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 04:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 04:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 04:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 04:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 04:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 04:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 04:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 04:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 04:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 04:13:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 04:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 04:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 04:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 04:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 04:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 04:15:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 04:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 04:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 04:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 04:16:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 04:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 04:16:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 04:17:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 04:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 04:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 04:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 04:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 04:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 04:18:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 04:18:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 05:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 05:28:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 05:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 05:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 05:29:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 05:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 05:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 05:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 05:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 05:30:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 05:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 05:31:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 05:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 05:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 05:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 05:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 05:32:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 05:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 05:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 05:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 05:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 05:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 05:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 05:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 05:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 05:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 05:34:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 05:35:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 05:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 05:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 05:35:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 05:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 05:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 05:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 05:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 05:37:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 06:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 06:46:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 06:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 06:47:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 06:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 06:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 06:47:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 06:47:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 06:47:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 06:47:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 06:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 06:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 06:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 06:48:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 06:48:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 06:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 06:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 06:49:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 06:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 06:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 06:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 06:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 06:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 06:51:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 06:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 06:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 06:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 06:52:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 06:52:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 06:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 06:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 06:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 06:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 06:53:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 06:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 06:53:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 08:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 08:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 08:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 08:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 08:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 08:25:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 08:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 08:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 08:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 08:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 08:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 08:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 08:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 08:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 08:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 08:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 08:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 08:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 08:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 08:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 08:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 08:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 08:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 08:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 08:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 08:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 08:32:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 08:32:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 08:32:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 08:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 08:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 08:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 08:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 08:33:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 08:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 08:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 09:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 09:48:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-May-2025 09:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 09:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-May-2025 09:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 09:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-May-2025 09:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 09:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-May-2025 09:49:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 09:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-May-2025 09:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 09:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-May-2025 09:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 09:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-May-2025 09:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 09:51:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-May-2025 09:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 09:52:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-May-2025 09:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 09:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-May-2025 09:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 09:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-May-2025 09:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 09:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-May-2025 09:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 09:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-May-2025 09:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 09:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-May-2025 09:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 09:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-May-2025 09:54:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 09:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-May-2025 09:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 09:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-May-2025 09:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-May-2025 09:56:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-May-2025 22:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-May-2025 22:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-May-2025 22:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-May-2025 22:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-May-2025 22:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-May-2025 22:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-May-2025 22:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-May-2025 22:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-May-2025 22:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-May-2025 22:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-May-2025 22:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-May-2025 22:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-May-2025 22:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-May-2025 22:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-May-2025 22:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-May-2025 22:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-May-2025 22:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-May-2025 22:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-May-2025 22:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-May-2025 22:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-May-2025 22:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-May-2025 22:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-May-2025 22:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-May-2025 22:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-May-2025 22:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-May-2025 22:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-May-2025 22:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-May-2025 22:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-May-2025 22:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-May-2025 22:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-May-2025 22:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-May-2025 22:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-May-2025 22:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-May-2025 22:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-May-2025 22:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-May-2025 22:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-May-2025 22:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-May-2025 22:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-May-2025 22:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-May-2025 22:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-May-2025 22:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-May-2025 22:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-May-2025 22:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-May-2025 22:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-May-2025 22:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-May-2025 22:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-May-2025 22:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-May-2025 22:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-May-2025 22:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-May-2025 22:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-May-2025 22:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-May-2025 22:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-May-2025 22:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-May-2025 22:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-May-2025 22:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-May-2025 22:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-May-2025 22:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-May-2025 22:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-May-2025 22:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-May-2025 22:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-May-2025 22:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-May-2025 22:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-May-2025 22:39:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-May-2025 22:39:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-May-2025 22:39:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-May-2025 22:39:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-May-2025 22:39:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-May-2025 22:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-May-2025 22:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-May-2025 22:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-May-2025 22:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-May-2025 22:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-May-2025 22:40:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-May-2025 22:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-May-2025 22:40:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-May-2025 22:40:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-May-2025 22:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-May-2025 16:28:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-May-2025 16:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-May-2025 16:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-May-2025 16:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-May-2025 16:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-May-2025 16:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-May-2025 16:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-May-2025 16:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-May-2025 16:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-May-2025 16:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-May-2025 16:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-May-2025 16:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-May-2025 16:29:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-May-2025 16:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-May-2025 16:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-May-2025 16:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-May-2025 16:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-May-2025 16:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-May-2025 00:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-May-2025 00:32:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-May-2025 00:32:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-May-2025 00:32:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-May-2025 00:32:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-May-2025 00:32:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-May-2025 00:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-May-2025 00:33:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-May-2025 00:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-May-2025 00:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-May-2025 00:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-May-2025 00:33:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-May-2025 00:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-May-2025 00:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-May-2025 00:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-May-2025 00:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-May-2025 00:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-May-2025 00:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-May-2025 12:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-May-2025 12:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-May-2025 12:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-May-2025 12:38:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-May-2025 12:38:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-May-2025 12:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-May-2025 12:38:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-May-2025 12:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-May-2025 12:38:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-May-2025 12:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-May-2025 12:39:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-May-2025 12:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-May-2025 12:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-May-2025 12:39:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-May-2025 12:39:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-May-2025 12:39:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-May-2025 12:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-May-2025 12:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-May-2025 16:12:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-May-2025 16:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-May-2025 16:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-May-2025 16:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-May-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-May-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-May-2025 16:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-May-2025 16:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-May-2025 16:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-May-2025 16:13:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-May-2025 16:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-May-2025 16:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-May-2025 16:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-May-2025 16:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-May-2025 16:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-May-2025 16:13:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-May-2025 16:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-May-2025 16:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-May-2025 18:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-May-2025 18:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-May-2025 18:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-May-2025 18:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-May-2025 18:16:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-May-2025 18:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-May-2025 18:16:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-May-2025 18:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-May-2025 18:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-May-2025 18:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-May-2025 18:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-May-2025 18:16:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-May-2025 18:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-May-2025 18:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-May-2025 18:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-May-2025 18:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-May-2025 18:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-May-2025 18:17:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jun-2025 13:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jun-2025 13:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jun-2025 13:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jun-2025 13:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jun-2025 13:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jun-2025 13:51:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jun-2025 13:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jun-2025 13:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jun-2025 13:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jun-2025 13:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jun-2025 13:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jun-2025 13:51:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jun-2025 13:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jun-2025 13:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jun-2025 13:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jun-2025 13:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jun-2025 13:51:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jun-2025 13:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jun-2025 14:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jun-2025 14:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jun-2025 14:52:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jun-2025 14:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jun-2025 14:52:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jun-2025 14:52:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jun-2025 14:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jun-2025 14:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jun-2025 14:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jun-2025 14:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jun-2025 14:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jun-2025 14:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jun-2025 14:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jun-2025 14:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jun-2025 14:52:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jun-2025 14:52:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jun-2025 14:52:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jun-2025 14:52:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jun-2025 19:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jun-2025 19:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jun-2025 19:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jun-2025 19:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jun-2025 19:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jun-2025 19:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jun-2025 19:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jun-2025 19:08:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jun-2025 19:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jun-2025 19:08:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jun-2025 19:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jun-2025 19:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jun-2025 19:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jun-2025 19:08:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jun-2025 19:08:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jun-2025 19:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jun-2025 19:08:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jun-2025 19:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jun-2025 20:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jun-2025 20:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jun-2025 20:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jun-2025 20:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jun-2025 20:54:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jun-2025 20:54:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jun-2025 20:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jun-2025 20:54:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jun-2025 20:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jun-2025 20:54:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jun-2025 20:54:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jun-2025 20:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jun-2025 20:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jun-2025 20:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jun-2025 20:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jun-2025 20:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jun-2025 20:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jun-2025 20:55:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jun-2025 20:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jun-2025 20:55:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jun-2025 20:55:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jun-2025 20:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jun-2025 20:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jun-2025 20:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jun-2025 20:55:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jun-2025 20:55:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jun-2025 20:55:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jun-2025 20:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jun-2025 20:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jun-2025 20:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jun-2025 20:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jun-2025 20:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jun-2025 20:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jun-2025 20:56:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jun-2025 20:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jun-2025 20:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jun-2025 21:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jun-2025 21:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jun-2025 21:25:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jun-2025 21:25:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Jun-2025 21:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jun-2025 21:25:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Jun-2025 21:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jun-2025 21:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Jun-2025 21:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jun-2025 21:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Jun-2025 21:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jun-2025 21:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Jun-2025 21:25:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jun-2025 21:25:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Jun-2025 21:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jun-2025 21:26:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Jun-2025 21:26:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jun-2025 21:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Jun-2025 21:26:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jun-2025 21:26:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Jun-2025 21:26:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jun-2025 21:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Jun-2025 21:26:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jun-2025 21:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Jun-2025 21:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jun-2025 21:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Jun-2025 21:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jun-2025 21:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Jun-2025 21:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jun-2025 21:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Jun-2025 21:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jun-2025 21:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Jun-2025 21:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jun-2025 21:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Jun-2025 21:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Jun-2025 21:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Jun-2025 13:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Jun-2025 13:53:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Jun-2025 13:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Jun-2025 13:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Jun-2025 13:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Jun-2025 13:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Jun-2025 13:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Jun-2025 13:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Jun-2025 13:53:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Jun-2025 13:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Jun-2025 13:53:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Jun-2025 13:53:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Jun-2025 13:53:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Jun-2025 13:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Jun-2025 13:53:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Jun-2025 13:53:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Jun-2025 13:53:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Jun-2025 13:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jun-2025 19:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Jun-2025 19:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Jun-2025 19:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Jun-2025 19:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Jun-2025 19:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Jun-2025 19:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Jun-2025 19:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Jun-2025 19:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Jun-2025 19:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Jun-2025 19:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Jun-2025 19:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Jun-2025 19:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Jun-2025 19:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Jun-2025 19:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Jun-2025 19:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Jun-2025 19:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Jun-2025 19:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Jun-2025 19:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2025 15:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2025 15:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2025 15:23:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2025 15:23:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2025 15:23:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2025 15:23:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2025 15:23:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2025 15:23:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2025 15:23:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2025 15:23:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2025 15:23:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2025 15:23:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2025 15:23:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2025 15:23:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2025 15:23:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2025 15:23:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2025 15:23:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2025 15:23:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2025 16:44:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2025 16:44:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2025 16:44:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2025 16:44:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2025 16:44:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2025 16:44:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2025 16:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2025 16:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2025 16:44:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2025 16:44:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2025 16:44:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2025 16:44:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2025 16:44:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2025 16:44:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2025 16:44:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2025 16:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2025 16:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2025 16:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Jun-2025 18:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Jun-2025 18:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Jun-2025 18:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Jun-2025 18:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Jun-2025 18:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Jun-2025 18:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Jun-2025 18:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Jun-2025 18:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Jun-2025 18:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Jun-2025 18:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Jun-2025 18:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Jun-2025 18:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Jun-2025 18:56:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Jun-2025 18:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Jun-2025 18:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Jun-2025 18:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Jun-2025 18:56:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Jun-2025 18:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2025 01:31:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2025 01:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2025 01:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2025 01:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2025 01:31:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2025 01:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2025 01:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2025 01:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2025 01:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2025 01:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2025 01:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2025 01:31:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2025 01:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2025 01:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2025 01:31:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2025 01:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2025 01:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2025 01:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Jun-2025 07:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Jun-2025 07:50:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Jun-2025 07:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Jun-2025 07:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Jun-2025 07:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Jun-2025 07:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Jun-2025 07:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Jun-2025 07:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Jun-2025 07:50:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Jun-2025 07:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Jun-2025 07:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Jun-2025 07:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Jun-2025 07:50:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Jun-2025 07:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Jun-2025 07:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Jun-2025 07:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Jun-2025 07:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Jun-2025 07:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jun-2025 01:21:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jun-2025 01:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jun-2025 01:21:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jun-2025 01:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jun-2025 01:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jun-2025 01:21:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jun-2025 01:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jun-2025 01:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jun-2025 01:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jun-2025 01:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jun-2025 01:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jun-2025 01:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jun-2025 01:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jun-2025 01:21:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jun-2025 01:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Jun-2025 01:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jun-2025 01:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jun-2025 01:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jun-2025 22:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jun-2025 16:37:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jun-2025 22:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Jun-2025 22:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Jun-2025 22:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Jun-2025 22:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Jun-2025 22:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Jun-2025 22:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Jun-2025 22:55:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Jun-2025 22:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Jun-2025 22:55:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Jun-2025 22:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Jun-2025 22:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Jun-2025 22:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Jun-2025 22:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Jun-2025 22:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Jun-2025 22:56:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Jun-2025 22:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Jun-2025 22:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Jun-2025 22:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Jun-2025 00:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 05:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 05:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 06:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 07:40:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 07:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 22:11:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 22:11:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Jun-2025 22:11:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Jun-2025 22:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Jun-2025 22:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Jun-2025 22:11:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Jun-2025 22:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Jun-2025 22:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Jun-2025 22:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Jun-2025 22:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Jun-2025 22:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Jun-2025 22:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Jun-2025 22:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Jun-2025 22:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Jun-2025 22:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Jun-2025 22:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Jun-2025 22:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Jun-2025 22:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Jun-2025 22:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 22:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Jun-2025 22:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Jun-2025 22:19:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Jun-2025 22:19:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Jun-2025 22:19:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Jun-2025 22:19:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Jun-2025 22:19:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Jun-2025 22:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Jun-2025 22:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Jun-2025 22:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Jun-2025 22:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Jun-2025 22:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Jun-2025 22:20:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Jun-2025 22:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Jun-2025 22:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Jun-2025 22:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Jun-2025 22:20:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Jun-2025 23:21:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Jun-2025 23:21:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Jun-2025 23:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Jun-2025 23:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Jun-2025 23:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Jun-2025 23:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Jun-2025 23:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Jun-2025 23:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Jun-2025 23:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Jun-2025 23:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Jun-2025 23:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Jun-2025 23:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Jun-2025 23:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Jun-2025 23:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Jun-2025 23:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Jun-2025 23:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Jun-2025 23:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Jun-2025 23:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:23:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:23:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:23:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:23:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:23:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:23:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:23:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:23:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:23:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:23:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:23:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:23:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:23:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:23:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:23:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:23:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:23:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:23:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:23:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:24:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:24:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:24:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:24:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:24:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:24:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:24:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:24:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:24:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:24:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:25:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:25:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:25:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:25:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:25:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:25:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:25:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:25:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:25:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:25:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:25:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:27:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:27:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:27:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:27:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:27:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:27:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:27:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:27:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:27:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:27:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:27:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:29:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:29:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:29:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:29:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:29:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:29:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:29:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:29:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:29:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:29:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 06:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 06:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 06:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 06:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 06:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 06:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 06:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 06:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 06:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 06:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 06:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 06:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 06:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 06:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 06:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 06:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 06:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 06:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 09:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 11:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 11:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 11:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 11:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 11:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 11:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 11:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 11:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 11:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 11:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 11:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 11:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 11:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 11:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 11:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 11:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 11:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 11:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 11:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 11:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 11:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 11:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 11:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 11:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 11:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 11:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 11:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 11:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 11:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 11:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 11:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 11:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 11:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 11:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 11:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 11:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 11:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 11:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 11:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 11:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 11:36:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 11:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 11:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 11:36:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 11:36:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 11:36:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 11:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 11:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 11:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 11:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 11:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 11:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 11:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Jun-2025 23:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Jun-2025 23:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Jun-2025 23:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Jun-2025 23:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Jun-2025 23:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Jun-2025 23:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Jun-2025 23:58:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Jun-2025 23:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Jun-2025 23:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Jun-2025 23:58:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Jun-2025 23:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Jun-2025 23:58:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Jun-2025 23:58:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Jun-2025 23:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Jun-2025 23:58:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Jun-2025 23:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Jun-2025 23:58:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Jun-2025 23:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jul-2025 06:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jul-2025 06:54:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jul-2025 06:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jul-2025 06:54:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jul-2025 06:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jul-2025 06:54:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jul-2025 06:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jul-2025 06:54:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jul-2025 06:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jul-2025 06:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jul-2025 06:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jul-2025 06:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jul-2025 06:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jul-2025 06:55:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jul-2025 06:55:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jul-2025 06:55:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jul-2025 06:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jul-2025 06:55:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jul-2025 09:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jul-2025 09:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jul-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jul-2025 09:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jul-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jul-2025 09:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jul-2025 09:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jul-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jul-2025 09:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jul-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jul-2025 09:21:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jul-2025 09:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jul-2025 09:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jul-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jul-2025 09:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jul-2025 09:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jul-2025 09:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jul-2025 09:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jul-2025 09:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jul-2025 09:41:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jul-2025 09:41:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jul-2025 09:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jul-2025 09:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jul-2025 09:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jul-2025 09:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jul-2025 09:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jul-2025 09:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jul-2025 09:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jul-2025 09:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jul-2025 09:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jul-2025 09:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jul-2025 09:42:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jul-2025 09:42:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jul-2025 09:42:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jul-2025 09:42:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jul-2025 09:42:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jul-2025 16:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jul-2025 16:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jul-2025 20:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jul-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jul-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jul-2025 20:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jul-2025 20:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jul-2025 20:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jul-2025 20:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jul-2025 20:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jul-2025 20:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jul-2025 20:27:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jul-2025 20:27:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jul-2025 20:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jul-2025 20:27:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jul-2025 20:27:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jul-2025 20:27:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jul-2025 20:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jul-2025 20:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jul-2025 20:27:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jul-2025 08:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jul-2025 08:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jul-2025 08:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jul-2025 08:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jul-2025 08:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jul-2025 08:43:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jul-2025 08:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jul-2025 08:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jul-2025 08:43:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jul-2025 08:43:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jul-2025 08:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jul-2025 08:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jul-2025 08:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jul-2025 08:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2025 08:44:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jul-2025 08:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jul-2025 08:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2025 08:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jul-2025 19:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jul-2025 19:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jul-2025 19:10:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jul-2025 19:10:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jul-2025 19:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jul-2025 19:10:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jul-2025 19:10:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jul-2025 19:10:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jul-2025 19:10:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jul-2025 19:10:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jul-2025 19:10:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jul-2025 19:10:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jul-2025 19:11:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jul-2025 19:11:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2025 19:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jul-2025 19:11:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jul-2025 19:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2025 19:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jul-2025 21:58:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jul-2025 21:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jul-2025 21:58:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jul-2025 21:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jul-2025 21:58:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jul-2025 21:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jul-2025 21:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jul-2025 21:58:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jul-2025 21:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jul-2025 21:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jul-2025 21:58:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jul-2025 21:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jul-2025 21:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jul-2025 21:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jul-2025 21:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jul-2025 21:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jul-2025 21:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jul-2025 21:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2025 00:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2025 00:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2025 00:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2025 00:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2025 00:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2025 00:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2025 00:49:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2025 00:49:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2025 00:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2025 00:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2025 00:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2025 00:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2025 00:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2025 00:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2025 00:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2025 00:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2025 00:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2025 00:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2025 03:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2025 04:38:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2025 04:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2025 04:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2025 04:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2025 04:39:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2025 04:39:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2025 04:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2025 04:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2025 04:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2025 04:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2025 04:39:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2025 04:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2025 04:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2025 04:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2025 04:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2025 04:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2025 04:39:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2025 04:39:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2025 05:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2025 05:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2025 05:32:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2025 05:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2025 05:32:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2025 05:32:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2025 05:32:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2025 05:32:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2025 05:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2025 05:32:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2025 05:32:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2025 05:32:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2025 05:32:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2025 05:32:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2025 05:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2025 05:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2025 05:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2025 05:32:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2025 05:48:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2025 05:48:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2025 05:48:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2025 05:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2025 05:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2025 05:48:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2025 05:48:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2025 05:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2025 05:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2025 05:48:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2025 05:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2025 05:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2025 05:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2025 05:48:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2025 05:48:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2025 05:48:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2025 05:48:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2025 05:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2025 06:50:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2025 06:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2025 06:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2025 06:50:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2025 06:50:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2025 06:50:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2025 06:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2025 06:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2025 06:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2025 06:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2025 06:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2025 06:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2025 06:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2025 06:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2025 06:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2025 06:51:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2025 06:51:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2025 06:51:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jul-2025 17:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jul-2025 17:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jul-2025 17:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jul-2025 17:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jul-2025 17:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jul-2025 17:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jul-2025 17:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jul-2025 17:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jul-2025 17:56:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jul-2025 17:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jul-2025 17:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jul-2025 17:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jul-2025 17:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jul-2025 17:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jul-2025 17:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jul-2025 17:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jul-2025 17:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jul-2025 17:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jul-2025 05:03:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jul-2025 05:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jul-2025 05:03:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jul-2025 05:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jul-2025 05:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jul-2025 05:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jul-2025 05:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jul-2025 05:03:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jul-2025 05:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jul-2025 05:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jul-2025 05:03:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jul-2025 05:04:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jul-2025 05:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jul-2025 05:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jul-2025 05:04:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jul-2025 05:04:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jul-2025 05:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jul-2025 05:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jul-2025 12:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jul-2025 12:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jul-2025 12:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jul-2025 12:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jul-2025 12:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jul-2025 12:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jul-2025 12:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jul-2025 12:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jul-2025 12:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jul-2025 12:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jul-2025 12:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jul-2025 12:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jul-2025 12:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jul-2025 12:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jul-2025 12:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jul-2025 12:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jul-2025 12:02:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jul-2025 12:02:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jul-2025 16:46:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jul-2025 16:46:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jul-2025 16:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jul-2025 16:46:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jul-2025 16:46:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jul-2025 16:46:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jul-2025 16:46:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jul-2025 16:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jul-2025 16:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jul-2025 16:46:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jul-2025 16:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jul-2025 16:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jul-2025 16:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jul-2025 16:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jul-2025 16:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jul-2025 16:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jul-2025 16:46:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jul-2025 16:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jul-2025 21:57:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jul-2025 21:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jul-2025 21:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jul-2025 21:57:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jul-2025 21:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jul-2025 21:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jul-2025 21:57:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jul-2025 21:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jul-2025 21:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jul-2025 21:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jul-2025 21:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jul-2025 21:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jul-2025 21:58:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jul-2025 21:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jul-2025 21:58:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jul-2025 21:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jul-2025 21:58:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jul-2025 21:58:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jul-2025 09:51:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jul-2025 09:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jul-2025 09:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jul-2025 09:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jul-2025 09:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jul-2025 09:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jul-2025 09:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jul-2025 09:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jul-2025 09:52:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jul-2025 09:52:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jul-2025 09:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jul-2025 09:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jul-2025 09:52:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jul-2025 09:52:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jul-2025 09:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jul-2025 09:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jul-2025 09:52:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jul-2025 09:52:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jul-2025 10:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jul-2025 10:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jul-2025 10:37:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jul-2025 10:37:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jul-2025 10:37:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jul-2025 10:37:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jul-2025 10:37:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jul-2025 10:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jul-2025 10:37:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jul-2025 10:37:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jul-2025 10:37:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jul-2025 10:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jul-2025 10:37:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jul-2025 10:37:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jul-2025 10:37:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jul-2025 10:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jul-2025 10:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jul-2025 10:37:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jul-2025 14:32:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jul-2025 14:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jul-2025 14:32:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jul-2025 14:32:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jul-2025 14:32:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jul-2025 14:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jul-2025 14:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jul-2025 14:32:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jul-2025 14:32:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jul-2025 14:32:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jul-2025 14:32:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jul-2025 14:32:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jul-2025 14:32:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jul-2025 14:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jul-2025 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jul-2025 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jul-2025 14:33:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jul-2025 14:33:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jul-2025 19:19:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jul-2025 12:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jul-2025 22:00:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jul-2025 21:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jul-2025 23:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jul-2025 01:19:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jul-2025 07:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Jul-2025 19:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jul-2025 20:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jul-2025 12:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Jul-2025 13:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Jul-2025 14:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Jul-2025 11:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jul-2025 11:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jul-2025 12:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Jul-2025 20:05:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jul-2025 21:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Jul-2025 21:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Jul-2025 21:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Jul-2025 21:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Jul-2025 21:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Jul-2025 21:05:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Jul-2025 21:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Jul-2025 21:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Jul-2025 21:05:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Jul-2025 21:05:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Jul-2025 21:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Jul-2025 21:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Jul-2025 21:05:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Jul-2025 21:05:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Jul-2025 21:05:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Jul-2025 21:05:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Jul-2025 21:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Jul-2025 21:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Aug-2025 18:32:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Aug-2025 18:32:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Aug-2025 18:32:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Aug-2025 18:32:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Aug-2025 18:32:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Aug-2025 18:32:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Aug-2025 18:32:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Aug-2025 18:32:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Aug-2025 18:32:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Aug-2025 18:32:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Aug-2025 18:32:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Aug-2025 18:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Aug-2025 18:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Aug-2025 18:32:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Aug-2025 18:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Aug-2025 18:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Aug-2025 18:33:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Aug-2025 18:33:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Aug-2025 00:59:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Aug-2025 00:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Aug-2025 00:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Aug-2025 00:59:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Aug-2025 00:59:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Aug-2025 00:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Aug-2025 00:59:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Aug-2025 00:59:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Aug-2025 00:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Aug-2025 01:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Aug-2025 01:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Aug-2025 01:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Aug-2025 01:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Aug-2025 01:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Aug-2025 01:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Aug-2025 01:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Aug-2025 01:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Aug-2025 01:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Aug-2025 03:28:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Aug-2025 03:28:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Aug-2025 03:28:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Aug-2025 03:28:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Aug-2025 03:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Aug-2025 03:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Aug-2025 03:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Aug-2025 03:28:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Aug-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Aug-2025 03:28:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Aug-2025 03:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Aug-2025 03:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Aug-2025 03:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Aug-2025 03:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Aug-2025 03:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Aug-2025 03:28:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Aug-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Aug-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Aug-2025 04:19:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Aug-2025 04:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Aug-2025 04:19:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Aug-2025 04:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Aug-2025 04:19:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Aug-2025 04:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Aug-2025 04:19:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Aug-2025 04:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Aug-2025 04:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Aug-2025 04:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Aug-2025 04:19:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Aug-2025 04:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Aug-2025 04:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Aug-2025 04:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Aug-2025 04:19:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Aug-2025 04:19:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Aug-2025 04:19:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Aug-2025 04:19:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Aug-2025 17:29:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Aug-2025 17:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Aug-2025 17:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Aug-2025 17:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Aug-2025 17:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Aug-2025 17:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Aug-2025 17:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Aug-2025 17:30:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Aug-2025 17:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Aug-2025 17:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Aug-2025 17:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Aug-2025 17:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Aug-2025 17:30:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Aug-2025 17:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Aug-2025 17:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Aug-2025 17:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Aug-2025 17:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Aug-2025 17:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Aug-2025 23:54:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Aug-2025 23:54:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Aug-2025 23:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Aug-2025 23:54:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Aug-2025 23:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Aug-2025 23:54:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Aug-2025 23:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Aug-2025 23:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Aug-2025 23:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Aug-2025 23:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Aug-2025 23:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Aug-2025 23:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Aug-2025 23:55:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Aug-2025 23:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Aug-2025 23:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Aug-2025 23:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Aug-2025 23:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Aug-2025 23:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2025 02:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2025 02:04:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2025 02:04:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2025 02:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2025 02:04:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Aug-2025 02:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2025 02:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2025 02:04:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2025 02:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2025 02:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2025 02:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2025 02:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2025 02:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2025 02:04:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2025 02:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2025 02:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2025 02:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2025 02:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Aug-2025 11:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Aug-2025 11:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Aug-2025 11:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Aug-2025 11:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Aug-2025 11:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Aug-2025 11:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Aug-2025 11:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Aug-2025 11:01:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Aug-2025 11:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Aug-2025 11:01:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Aug-2025 11:01:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Aug-2025 11:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Aug-2025 11:01:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Aug-2025 11:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Aug-2025 11:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Aug-2025 11:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Aug-2025 11:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Aug-2025 11:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Aug-2025 17:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Aug-2025 17:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Aug-2025 17:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Aug-2025 17:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Aug-2025 17:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Aug-2025 17:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Aug-2025 17:49:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Aug-2025 17:49:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Aug-2025 17:49:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Aug-2025 17:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Aug-2025 17:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Aug-2025 17:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Aug-2025 17:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Aug-2025 17:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Aug-2025 17:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Aug-2025 17:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Aug-2025 17:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Aug-2025 17:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Aug-2025 08:44:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Aug-2025 08:44:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Aug-2025 08:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Aug-2025 08:44:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Aug-2025 08:45:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Aug-2025 08:45:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Aug-2025 08:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Aug-2025 08:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Aug-2025 08:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Aug-2025 08:45:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Aug-2025 08:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Aug-2025 08:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Aug-2025 08:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Aug-2025 08:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Aug-2025 08:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Aug-2025 08:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Aug-2025 08:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Aug-2025 08:45:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Aug-2025 08:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Aug-2025 08:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Aug-2025 08:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Aug-2025 08:45:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Aug-2025 08:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Aug-2025 08:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Aug-2025 08:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Aug-2025 08:45:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Aug-2025 08:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Aug-2025 08:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Aug-2025 08:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Aug-2025 08:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Aug-2025 08:45:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Aug-2025 08:45:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Aug-2025 08:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Aug-2025 08:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Aug-2025 08:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Aug-2025 08:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Aug-2025 08:45:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Aug-2025 08:45:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Aug-2025 08:45:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Aug-2025 08:45:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Aug-2025 08:45:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Aug-2025 08:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Aug-2025 08:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Aug-2025 08:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Aug-2025 08:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Aug-2025 08:45:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Aug-2025 08:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Aug-2025 08:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Aug-2025 08:45:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Aug-2025 08:45:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Aug-2025 08:45:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Aug-2025 08:45:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Aug-2025 08:45:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Aug-2025 08:45:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Aug-2025 16:38:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Aug-2025 16:38:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Aug-2025 16:38:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Aug-2025 16:38:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Aug-2025 16:38:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Aug-2025 16:38:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Aug-2025 16:38:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Aug-2025 16:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Aug-2025 16:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Aug-2025 16:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Aug-2025 16:38:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Aug-2025 16:38:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Aug-2025 16:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Aug-2025 16:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Aug-2025 16:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Aug-2025 16:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Aug-2025 16:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Aug-2025 16:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Aug-2025 01:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Aug-2025 01:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Aug-2025 01:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Aug-2025 01:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Aug-2025 01:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Aug-2025 01:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Aug-2025 01:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Aug-2025 01:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Aug-2025 01:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Aug-2025 01:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Aug-2025 01:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Aug-2025 01:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Aug-2025 01:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Aug-2025 01:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Aug-2025 01:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Aug-2025 01:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Aug-2025 01:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Aug-2025 01:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Aug-2025 07:11:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Aug-2025 07:11:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Aug-2025 07:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Aug-2025 07:11:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Aug-2025 07:11:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Aug-2025 07:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Aug-2025 07:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Aug-2025 07:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Aug-2025 07:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Aug-2025 07:11:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Aug-2025 07:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Aug-2025 07:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Aug-2025 07:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Aug-2025 07:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Aug-2025 07:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Aug-2025 07:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Aug-2025 07:11:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Aug-2025 07:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Aug-2025 07:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Aug-2025 07:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Aug-2025 07:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Aug-2025 07:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Aug-2025 07:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Aug-2025 07:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Aug-2025 07:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Aug-2025 07:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Aug-2025 07:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Aug-2025 07:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Aug-2025 07:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Aug-2025 07:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Aug-2025 07:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Aug-2025 07:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Aug-2025 07:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Aug-2025 07:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Aug-2025 07:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Aug-2025 07:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Aug-2025 12:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Aug-2025 12:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Aug-2025 12:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Aug-2025 12:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Aug-2025 12:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Aug-2025 12:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Aug-2025 12:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Aug-2025 12:25:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Aug-2025 12:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Aug-2025 12:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Aug-2025 12:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Aug-2025 12:25:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Aug-2025 12:25:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Aug-2025 12:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Aug-2025 12:25:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Aug-2025 12:25:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Aug-2025 12:25:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Aug-2025 12:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Aug-2025 12:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Aug-2025 12:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Aug-2025 12:30:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Aug-2025 12:30:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Aug-2025 12:30:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Aug-2025 12:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Aug-2025 12:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Aug-2025 12:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Aug-2025 12:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Aug-2025 12:30:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Aug-2025 12:30:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Aug-2025 12:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Aug-2025 12:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Aug-2025 12:30:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Aug-2025 12:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Aug-2025 12:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Aug-2025 12:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Aug-2025 12:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2025 06:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2025 06:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2025 06:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2025 06:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2025 06:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2025 06:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2025 06:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2025 06:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2025 06:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2025 06:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2025 06:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2025 06:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2025 06:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2025 06:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2025 06:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2025 06:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2025 06:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2025 06:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2025 09:53:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2025 09:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2025 09:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2025 09:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2025 09:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2025 09:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2025 09:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2025 09:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2025 09:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2025 09:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2025 09:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2025 09:54:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2025 09:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2025 09:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2025 09:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2025 09:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2025 09:54:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2025 09:54:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2025 14:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2025 14:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2025 14:48:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2025 14:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2025 14:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2025 14:48:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2025 14:48:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2025 14:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2025 14:48:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2025 14:48:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2025 14:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2025 14:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2025 14:48:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2025 14:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2025 14:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2025 14:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2025 14:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2025 14:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2025 16:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2025 16:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2025 16:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2025 16:25:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2025 16:25:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2025 16:25:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2025 16:25:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2025 16:25:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2025 16:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2025 16:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2025 16:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2025 16:25:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2025 16:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2025 16:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2025 16:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2025 16:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2025 16:26:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2025 16:26:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2025 16:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2025 16:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2025 16:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2025 16:35:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2025 16:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2025 16:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2025 16:36:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2025 16:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2025 16:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2025 16:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2025 16:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2025 16:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2025 16:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2025 16:36:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2025 16:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2025 16:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2025 16:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2025 16:36:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2025 22:14:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2025 22:14:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2025 22:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2025 22:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2025 22:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2025 22:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2025 22:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2025 22:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2025 22:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2025 22:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2025 22:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2025 22:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2025 22:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2025 22:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2025 22:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2025 22:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2025 22:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2025 22:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Aug-2025 22:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Aug-2025 22:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Aug-2025 22:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Aug-2025 22:19:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Aug-2025 22:19:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Aug-2025 22:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Aug-2025 22:19:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Aug-2025 22:19:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Aug-2025 22:19:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Aug-2025 22:19:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Aug-2025 22:19:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Aug-2025 22:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Aug-2025 22:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Aug-2025 22:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Aug-2025 22:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Aug-2025 22:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Aug-2025 22:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Aug-2025 22:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Aug-2025 03:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Aug-2025 03:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Aug-2025 03:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Aug-2025 03:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Aug-2025 03:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Aug-2025 03:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Aug-2025 03:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Aug-2025 03:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Aug-2025 03:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Aug-2025 03:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Aug-2025 03:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Aug-2025 03:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Aug-2025 03:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Aug-2025 03:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Aug-2025 03:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Aug-2025 03:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Aug-2025 03:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Aug-2025 03:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Aug-2025 03:54:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Aug-2025 03:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Aug-2025 03:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Aug-2025 03:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Aug-2025 03:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Aug-2025 03:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Aug-2025 03:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Aug-2025 03:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Aug-2025 03:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Aug-2025 03:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Aug-2025 03:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Aug-2025 03:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Aug-2025 03:55:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Aug-2025 03:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Aug-2025 03:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Aug-2025 03:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Aug-2025 03:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Aug-2025 03:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Aug-2025 16:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Aug-2025 16:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Aug-2025 16:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Aug-2025 16:46:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Aug-2025 16:46:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Aug-2025 16:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Aug-2025 16:46:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Aug-2025 16:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Aug-2025 16:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Aug-2025 16:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Aug-2025 16:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Aug-2025 16:46:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Aug-2025 16:46:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Aug-2025 16:47:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Aug-2025 16:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Aug-2025 16:47:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Aug-2025 16:47:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Aug-2025 16:47:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Aug-2025 19:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Aug-2025 19:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Aug-2025 19:40:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Aug-2025 19:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Aug-2025 19:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Aug-2025 19:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Aug-2025 19:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Aug-2025 19:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Aug-2025 19:41:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Aug-2025 19:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Aug-2025 19:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Aug-2025 19:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Aug-2025 19:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Aug-2025 19:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Aug-2025 19:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Aug-2025 19:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Aug-2025 19:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Aug-2025 19:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2025 01:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2025 01:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2025 01:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2025 01:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2025 01:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2025 01:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2025 01:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Aug-2025 01:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2025 01:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2025 01:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2025 01:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2025 01:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2025 01:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2025 01:12:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2025 01:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2025 01:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2025 01:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2025 01:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2025 02:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2025 02:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2025 02:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2025 02:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2025 02:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2025 02:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2025 02:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2025 02:23:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2025 02:24:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2025 02:24:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2025 02:24:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2025 02:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2025 02:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2025 02:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2025 02:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2025 02:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2025 02:25:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2025 03:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2025 03:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2025 03:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2025 03:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2025 03:56:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2025 03:57:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2025 03:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Aug-2025 03:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2025 03:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2025 03:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2025 03:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2025 03:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2025 03:58:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2025 03:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2025 03:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2025 03:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2025 03:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2025 03:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2025 09:45:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2025 09:45:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2025 09:45:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2025 09:45:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2025 09:45:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2025 09:45:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2025 09:45:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Aug-2025 09:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2025 09:45:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2025 09:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2025 09:45:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2025 09:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2025 09:45:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2025 09:45:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2025 09:45:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2025 09:45:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2025 09:45:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2025 09:45:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2025 09:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2025 09:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2025 09:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2025 09:49:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2025 09:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2025 09:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2025 09:49:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Aug-2025 09:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2025 09:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2025 09:50:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2025 09:50:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2025 09:50:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2025 09:50:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2025 09:50:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2025 09:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2025 09:50:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2025 09:50:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2025 09:50:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2025 21:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2025 21:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2025 21:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2025 21:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2025 21:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2025 21:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2025 21:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Aug-2025 21:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2025 21:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2025 21:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2025 21:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2025 21:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2025 21:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2025 21:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2025 21:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2025 21:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2025 21:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2025 21:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Aug-2025 21:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Aug-2025 21:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Aug-2025 21:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Aug-2025 21:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Aug-2025 21:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Aug-2025 21:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Aug-2025 21:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Aug-2025 21:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Aug-2025 21:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Aug-2025 21:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Aug-2025 21:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Aug-2025 21:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Aug-2025 21:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Aug-2025 21:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Aug-2025 21:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Aug-2025 21:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Aug-2025 21:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Aug-2025 21:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Aug-2025 09:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Aug-2025 09:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Aug-2025 09:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Aug-2025 09:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Aug-2025 09:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Aug-2025 09:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Aug-2025 09:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Aug-2025 09:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Aug-2025 09:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Aug-2025 09:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Aug-2025 09:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Aug-2025 09:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Aug-2025 09:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Aug-2025 09:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Aug-2025 09:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Aug-2025 09:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Aug-2025 09:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Aug-2025 09:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Aug-2025 12:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Aug-2025 12:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Aug-2025 12:34:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Aug-2025 12:34:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Aug-2025 12:34:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Aug-2025 12:34:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Aug-2025 12:34:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Aug-2025 12:34:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Aug-2025 12:34:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Aug-2025 12:34:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Aug-2025 12:34:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Aug-2025 12:34:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Aug-2025 12:34:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Aug-2025 12:34:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Aug-2025 12:34:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Aug-2025 12:34:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Aug-2025 12:34:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Aug-2025 12:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Aug-2025 12:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Aug-2025 12:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Aug-2025 12:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Aug-2025 12:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Aug-2025 12:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Aug-2025 12:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Aug-2025 12:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Aug-2025 12:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Aug-2025 12:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Aug-2025 12:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Aug-2025 12:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Aug-2025 12:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Aug-2025 12:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Aug-2025 12:39:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Aug-2025 12:39:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Aug-2025 12:39:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Aug-2025 12:39:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Aug-2025 12:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Aug-2025 03:35:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Aug-2025 03:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Aug-2025 03:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Aug-2025 03:35:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Aug-2025 03:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Aug-2025 03:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Aug-2025 03:35:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Aug-2025 03:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Aug-2025 03:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Aug-2025 03:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Aug-2025 03:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Aug-2025 03:35:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Aug-2025 03:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Aug-2025 03:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Aug-2025 03:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Aug-2025 03:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Aug-2025 03:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Aug-2025 03:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Aug-2025 03:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Aug-2025 03:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Aug-2025 03:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Aug-2025 03:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Aug-2025 03:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Aug-2025 03:39:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Aug-2025 03:39:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Aug-2025 03:39:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Aug-2025 03:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Aug-2025 03:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Aug-2025 03:39:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Aug-2025 03:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Aug-2025 03:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Aug-2025 03:39:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Aug-2025 03:39:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Aug-2025 03:39:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Aug-2025 03:39:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Aug-2025 03:39:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Aug-2025 05:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Aug-2025 05:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Aug-2025 05:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Aug-2025 05:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Aug-2025 05:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Aug-2025 05:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Aug-2025 05:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Aug-2025 05:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Aug-2025 05:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Aug-2025 05:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Aug-2025 05:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Aug-2025 05:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Aug-2025 05:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Aug-2025 05:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Aug-2025 05:58:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Aug-2025 05:58:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Aug-2025 05:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Aug-2025 05:58:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Aug-2025 06:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Aug-2025 06:03:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Aug-2025 06:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Aug-2025 06:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Aug-2025 06:03:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Aug-2025 06:03:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Aug-2025 06:03:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Aug-2025 06:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Aug-2025 06:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Aug-2025 06:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Aug-2025 06:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Aug-2025 06:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Aug-2025 06:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Aug-2025 06:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Aug-2025 06:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Aug-2025 06:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Aug-2025 06:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Aug-2025 06:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Aug-2025 18:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Aug-2025 18:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Aug-2025 18:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Aug-2025 18:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Aug-2025 18:28:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Aug-2025 18:28:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Aug-2025 18:28:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Aug-2025 18:28:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Aug-2025 18:28:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Aug-2025 18:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Aug-2025 18:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Aug-2025 18:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Aug-2025 18:28:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Aug-2025 18:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Aug-2025 18:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Aug-2025 18:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Aug-2025 18:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Aug-2025 18:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Aug-2025 18:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Aug-2025 18:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Aug-2025 18:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Aug-2025 18:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Aug-2025 18:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Aug-2025 18:34:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Aug-2025 18:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Aug-2025 18:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Aug-2025 18:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Aug-2025 18:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Aug-2025 18:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Aug-2025 18:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Aug-2025 18:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Aug-2025 18:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Aug-2025 18:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Aug-2025 18:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Aug-2025 18:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Aug-2025 18:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2025 03:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2025 03:29:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2025 03:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2025 03:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2025 03:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2025 03:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2025 03:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2025 03:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2025 03:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2025 03:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2025 03:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2025 03:29:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2025 03:29:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2025 03:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2025 03:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2025 03:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2025 03:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2025 03:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2025 03:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2025 03:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2025 03:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2025 03:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2025 03:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2025 03:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2025 03:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2025 03:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2025 03:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2025 03:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2025 03:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2025 03:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2025 03:33:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2025 03:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2025 04:52:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2025 04:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2025 04:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2025 04:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2025 04:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2025 04:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2025 04:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2025 04:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2025 04:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2025 04:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2025 04:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2025 04:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2025 04:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2025 04:52:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2025 04:52:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2025 04:52:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2025 04:52:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2025 04:52:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2025 04:56:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2025 04:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2025 04:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2025 04:56:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2025 04:56:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2025 04:56:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2025 04:56:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2025 04:56:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2025 04:56:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2025 04:57:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2025 04:57:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2025 04:57:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2025 04:57:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2025 04:57:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2025 04:57:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2025 04:57:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2025 04:57:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2025 04:57:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Aug-2025 12:14:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Aug-2025 12:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Aug-2025 12:14:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Aug-2025 12:14:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Aug-2025 12:14:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Aug-2025 12:14:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Aug-2025 12:14:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Aug-2025 12:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Aug-2025 12:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Aug-2025 12:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Aug-2025 12:14:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Aug-2025 12:14:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Aug-2025 12:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Aug-2025 12:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Aug-2025 12:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Aug-2025 12:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Aug-2025 12:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Aug-2025 12:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 07:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 07:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 07:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 07:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 07:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 07:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 07:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 07:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 07:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 07:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 07:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 07:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 07:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 07:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 07:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 07:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 07:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 07:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 07:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 07:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 07:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 07:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 07:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 07:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 07:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 07:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 07:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 07:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 07:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 07:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 07:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 07:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 07:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 07:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 07:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 07:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 14:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 14:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 14:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 14:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 14:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 14:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 14:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 14:41:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 14:41:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 14:41:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 14:41:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 14:41:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 14:41:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 14:41:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 14:41:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 14:41:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 14:41:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 14:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 14:46:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 14:46:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 14:46:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 14:46:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 14:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 14:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 14:46:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 14:46:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 14:46:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 14:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 14:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 14:46:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 14:46:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 14:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 14:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 14:46:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 14:46:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 14:46:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 17:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 17:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 17:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 17:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 17:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 17:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 17:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 17:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 17:23:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 17:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 17:23:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 17:23:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 17:23:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 17:23:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 17:23:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 17:23:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 17:23:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 17:23:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 18:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 18:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 18:11:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 18:11:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 18:11:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 18:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 18:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 18:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 18:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 18:11:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 18:11:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 18:11:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 18:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 18:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 18:11:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 18:11:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 18:11:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 18:11:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 18:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 18:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 18:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 18:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 18:15:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 18:15:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 18:15:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 18:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 18:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 18:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 18:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 18:15:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 18:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 18:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 18:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 18:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 18:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 18:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 20:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 20:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 20:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 20:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 20:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 20:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 20:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 20:42:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 20:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 20:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 20:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 20:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 20:42:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 20:42:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 20:42:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 20:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 20:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 20:42:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 20:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 20:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 20:46:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 20:46:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 20:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 20:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 20:46:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 20:46:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 20:46:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 20:47:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 20:47:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 20:47:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 20:47:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 20:47:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 20:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 20:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 20:47:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 20:47:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 21:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 21:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 21:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 21:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 21:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 21:16:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 21:16:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 21:16:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 21:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 21:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 21:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 21:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 21:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 21:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 21:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 21:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 21:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 21:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 21:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 21:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 21:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 21:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 21:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 21:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 21:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 21:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 21:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 21:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 21:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 21:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 21:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 21:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 21:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 21:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 21:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 21:59:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 22:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 22:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 22:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 22:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 22:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 22:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 22:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 22:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 22:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 22:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 22:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 22:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 22:03:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 22:03:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 22:03:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 22:03:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 22:03:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 22:03:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Aug-2025 23:21:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Aug-2025 23:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Aug-2025 23:21:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Aug-2025 23:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Aug-2025 23:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Aug-2025 23:21:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Aug-2025 23:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Aug-2025 23:21:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Aug-2025 23:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Aug-2025 23:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Aug-2025 23:21:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Aug-2025 23:21:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Aug-2025 23:21:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Aug-2025 23:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Aug-2025 23:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Aug-2025 23:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Aug-2025 23:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Aug-2025 23:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 01:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 01:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 01:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 01:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 01:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 01:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 01:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 01:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 01:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 01:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 01:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 01:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 01:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 01:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 01:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 01:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 01:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 01:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 01:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 01:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 01:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 01:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 01:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 01:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 01:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 01:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 01:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 01:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 01:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 01:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 01:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 01:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 01:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 01:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 01:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 01:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 01:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 01:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 01:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 01:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 01:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 01:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 01:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 01:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 01:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 01:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 01:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 01:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 01:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 01:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 01:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 01:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 01:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 01:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 01:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 01:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 01:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 01:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 01:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 01:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 01:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 01:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 01:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 01:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 01:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 01:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 01:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 01:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 01:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 01:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 01:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 01:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 05:04:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 05:04:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 05:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 05:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 05:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 05:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 05:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 05:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 05:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 05:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 05:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 05:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 05:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 05:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 05:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 05:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 05:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 05:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 05:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 05:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 05:08:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 05:08:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 05:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 05:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 05:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 05:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 05:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 05:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 05:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 05:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 05:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 05:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 05:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 05:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 05:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 05:08:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 07:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 07:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 07:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 07:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 07:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 07:20:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 07:20:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 07:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 07:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 07:20:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 07:20:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 07:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 07:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 07:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 07:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 07:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 07:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 07:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 07:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 07:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 07:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 07:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 07:50:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 07:50:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 07:50:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 07:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 07:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 07:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 07:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 07:50:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 07:50:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 07:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 07:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 07:50:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 07:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 07:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 13:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 13:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 13:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 13:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 13:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 13:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 13:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 13:22:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 13:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 13:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 13:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 13:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 13:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 13:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 13:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 13:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 13:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 13:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 20:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 20:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 20:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 20:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 20:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 20:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 20:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 20:50:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 20:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 20:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 20:50:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 20:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 20:50:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 20:50:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 20:50:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 20:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 20:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 20:50:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 20:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 20:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 20:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 20:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 20:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 20:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 20:56:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 20:56:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 20:56:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 20:56:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 20:56:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 20:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 20:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 20:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 20:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 20:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 20:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 20:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Aug-2025 23:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Aug-2025 23:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Aug-2025 23:16:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Aug-2025 23:16:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Aug-2025 23:16:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Aug-2025 23:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Aug-2025 23:16:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Aug-2025 23:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Aug-2025 23:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Aug-2025 23:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Aug-2025 23:16:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Aug-2025 23:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Aug-2025 23:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Aug-2025 23:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Aug-2025 23:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Aug-2025 23:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Aug-2025 23:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Aug-2025 23:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2025 02:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2025 02:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2025 02:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2025 02:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2025 02:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2025 02:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2025 02:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2025 02:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2025 02:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2025 02:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2025 02:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2025 02:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2025 02:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2025 02:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2025 02:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2025 02:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2025 02:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2025 02:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2025 02:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2025 02:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2025 02:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2025 02:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2025 02:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2025 02:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2025 02:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2025 02:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2025 02:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2025 02:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2025 02:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2025 02:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2025 02:51:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2025 02:51:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2025 02:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2025 02:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2025 02:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2025 02:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2025 05:02:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2025 05:02:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2025 05:02:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2025 05:02:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2025 05:02:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2025 05:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2025 05:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2025 05:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2025 05:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2025 05:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2025 05:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2025 05:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2025 05:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2025 05:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2025 05:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2025 05:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2025 05:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2025 05:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2025 11:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2025 11:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2025 11:57:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2025 11:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2025 11:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2025 11:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2025 11:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2025 11:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2025 11:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2025 11:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2025 11:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2025 11:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2025 11:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2025 11:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2025 11:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2025 11:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2025 11:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2025 11:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2025 18:58:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2025 18:58:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2025 18:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2025 18:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2025 18:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2025 18:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2025 18:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2025 18:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2025 18:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2025 18:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2025 18:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2025 18:58:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2025 18:58:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2025 18:58:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2025 18:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2025 18:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2025 18:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2025 18:58:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2025 20:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2025 20:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2025 20:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2025 20:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2025 20:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2025 20:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2025 20:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2025 20:05:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2025 20:05:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2025 20:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2025 20:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2025 20:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2025 20:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2025 20:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2025 20:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2025 20:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2025 20:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2025 20:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Aug-2025 20:10:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Aug-2025 20:10:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Aug-2025 20:10:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Aug-2025 20:10:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Aug-2025 20:10:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Aug-2025 20:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Aug-2025 20:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Aug-2025 20:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Aug-2025 20:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Aug-2025 20:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Aug-2025 20:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Aug-2025 20:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Aug-2025 20:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Aug-2025 20:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Aug-2025 20:10:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Aug-2025 20:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Aug-2025 20:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Aug-2025 20:10:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 07:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 07:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 07:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 07:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 07:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 07:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 07:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 07:30:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 07:30:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 07:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 07:30:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 07:30:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 07:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 07:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 07:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 07:30:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 07:30:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 07:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 07:35:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 07:35:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 07:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 07:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 07:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 07:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 07:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 07:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 07:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 07:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 07:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 07:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 07:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 07:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 07:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 07:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 07:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 07:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 13:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 13:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 13:38:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 13:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 13:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 13:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 13:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 13:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 13:39:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 13:39:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 13:39:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 13:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 13:39:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 13:39:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 13:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 13:39:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 13:39:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 13:39:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 13:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 13:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 13:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 13:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 13:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 13:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 13:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 13:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 13:42:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 13:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 13:42:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 13:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 13:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 13:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 13:42:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 13:42:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 13:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 13:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 13:44:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 13:44:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 13:44:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 13:44:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 13:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 13:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 13:44:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 13:44:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 13:44:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 13:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 13:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 13:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 13:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 13:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 13:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 13:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 13:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 13:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 13:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 13:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 13:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 13:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 13:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 13:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 13:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 13:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 13:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 13:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 13:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 13:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 13:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 13:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 13:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 13:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 13:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 13:47:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 19:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 19:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 19:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 19:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 19:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 19:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 19:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 19:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 19:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 19:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 19:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 19:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 19:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 19:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 19:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 19:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 19:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 19:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Aug-2025 23:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Aug-2025 23:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Aug-2025 23:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Aug-2025 23:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Aug-2025 23:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Aug-2025 23:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Aug-2025 23:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Aug-2025 23:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Aug-2025 23:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Aug-2025 23:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Aug-2025 23:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Aug-2025 23:05:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Aug-2025 23:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Aug-2025 23:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Aug-2025 23:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Aug-2025 23:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Aug-2025 23:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Aug-2025 23:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 08:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 08:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 08:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 08:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 08:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 08:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 08:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 08:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 08:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 08:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 08:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 08:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 08:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 08:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 08:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 08:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 08:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 08:15:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 08:50:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 08:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 08:50:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 08:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 08:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 08:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 08:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 08:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 08:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 08:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 08:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 08:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 08:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 08:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 08:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 08:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 08:51:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 08:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 08:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 08:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 08:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 08:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 08:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 08:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 08:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 08:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 08:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 08:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 08:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 08:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 08:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 08:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 08:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 08:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 08:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 08:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 08:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 08:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 08:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 08:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 08:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 08:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 08:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 08:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 08:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 08:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 08:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 08:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 08:54:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 08:54:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 08:54:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 08:54:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 08:54:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 08:54:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 08:54:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 08:54:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 08:54:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 08:54:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 08:54:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 08:54:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 08:54:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 08:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 08:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 08:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 08:54:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 08:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 08:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 08:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 08:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 08:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 08:54:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 08:54:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 12:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 12:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 12:05:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 12:05:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 12:05:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 12:05:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 12:05:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 12:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 12:05:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 12:06:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 12:06:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 12:06:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 12:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 12:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 12:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 12:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 12:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 12:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 12:17:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 12:17:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 12:17:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 12:17:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 12:17:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 12:17:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 12:17:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 12:17:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 12:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 12:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 12:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 12:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 12:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 12:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 12:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 12:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 12:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 12:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 20:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 20:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Aug-2025 20:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 20:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Aug-2025 20:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 20:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Aug-2025 20:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 20:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Aug-2025 20:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 20:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Aug-2025 20:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 20:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Aug-2025 20:49:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 20:49:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Aug-2025 20:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 20:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Aug-2025 20:49:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 20:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Aug-2025 20:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 20:49:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Aug-2025 20:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 20:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Aug-2025 20:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 20:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Aug-2025 20:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 20:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Aug-2025 20:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 20:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Aug-2025 20:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 20:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Aug-2025 20:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 20:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Aug-2025 20:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 20:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Aug-2025 20:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Aug-2025 20:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Aug-2025 00:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Aug-2025 00:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Aug-2025 00:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Aug-2025 00:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Aug-2025 00:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Aug-2025 00:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Aug-2025 00:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Aug-2025 00:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Aug-2025 00:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Aug-2025 00:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Aug-2025 00:33:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Aug-2025 00:33:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Aug-2025 00:33:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Aug-2025 00:33:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Aug-2025 00:33:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Aug-2025 00:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Aug-2025 00:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Aug-2025 00:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Aug-2025 23:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Aug-2025 23:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Aug-2025 23:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Aug-2025 23:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Aug-2025 23:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Aug-2025 23:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Aug-2025 23:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Aug-2025 23:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Aug-2025 23:04:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Aug-2025 23:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Aug-2025 23:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Aug-2025 23:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Aug-2025 23:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Aug-2025 23:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Aug-2025 23:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Aug-2025 23:05:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Aug-2025 23:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Aug-2025 23:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Aug-2025 23:10:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Aug-2025 23:10:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Aug-2025 23:10:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Aug-2025 23:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Aug-2025 23:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Aug-2025 23:10:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Aug-2025 23:10:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Aug-2025 23:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Aug-2025 23:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Aug-2025 23:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Aug-2025 23:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Aug-2025 23:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Aug-2025 23:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Aug-2025 23:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Aug-2025 23:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Aug-2025 23:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Aug-2025 23:10:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Aug-2025 23:10:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Aug-2025 13:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Aug-2025 13:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Aug-2025 13:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Aug-2025 13:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Aug-2025 13:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Aug-2025 13:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Aug-2025 13:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Aug-2025 13:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Aug-2025 13:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Aug-2025 13:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Aug-2025 13:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Aug-2025 13:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Aug-2025 13:01:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Aug-2025 13:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Aug-2025 13:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Aug-2025 13:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Aug-2025 13:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Aug-2025 13:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Aug-2025 16:25:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Aug-2025 16:25:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Aug-2025 16:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Aug-2025 16:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Aug-2025 16:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Aug-2025 16:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Aug-2025 16:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Aug-2025 16:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Aug-2025 16:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Aug-2025 16:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Aug-2025 16:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Aug-2025 16:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Aug-2025 16:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Aug-2025 16:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Aug-2025 16:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Aug-2025 16:25:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Aug-2025 16:25:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Aug-2025 16:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Aug-2025 16:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Aug-2025 16:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Aug-2025 16:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Aug-2025 16:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Aug-2025 16:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Aug-2025 16:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Aug-2025 16:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Aug-2025 16:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Aug-2025 16:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Aug-2025 16:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Aug-2025 16:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Aug-2025 16:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Aug-2025 16:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Aug-2025 16:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Aug-2025 16:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Aug-2025 16:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Aug-2025 16:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Aug-2025 16:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Aug-2025 19:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Aug-2025 19:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Aug-2025 19:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Aug-2025 19:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Aug-2025 19:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Aug-2025 19:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Aug-2025 19:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Aug-2025 19:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Aug-2025 19:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Aug-2025 19:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Aug-2025 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Aug-2025 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Aug-2025 19:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Aug-2025 19:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Aug-2025 19:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Aug-2025 19:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Aug-2025 19:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Aug-2025 19:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Aug-2025 19:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Aug-2025 19:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Aug-2025 19:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Aug-2025 19:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Aug-2025 19:08:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Aug-2025 19:08:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Aug-2025 19:08:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Aug-2025 19:08:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Aug-2025 19:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Aug-2025 19:08:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Aug-2025 19:08:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Aug-2025 19:08:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Aug-2025 19:08:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Aug-2025 19:08:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Aug-2025 19:08:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Aug-2025 19:08:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Aug-2025 19:08:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Aug-2025 19:08:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 04:47:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Aug-2025 04:47:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Aug-2025 04:47:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Aug-2025 04:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Aug-2025 04:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Aug-2025 04:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Aug-2025 04:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Aug-2025 04:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Aug-2025 04:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Aug-2025 04:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Aug-2025 04:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Aug-2025 04:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Aug-2025 04:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Aug-2025 04:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Aug-2025 04:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Aug-2025 04:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Aug-2025 04:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Aug-2025 04:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 04:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Aug-2025 04:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Aug-2025 04:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Aug-2025 04:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Aug-2025 04:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Aug-2025 04:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Aug-2025 04:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Aug-2025 04:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Aug-2025 04:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Aug-2025 04:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Aug-2025 04:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Aug-2025 04:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Aug-2025 04:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Aug-2025 04:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Aug-2025 04:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Aug-2025 04:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Aug-2025 04:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Aug-2025 04:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 20:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Aug-2025 20:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Aug-2025 20:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Aug-2025 20:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Aug-2025 20:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Aug-2025 20:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Aug-2025 20:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Aug-2025 20:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Aug-2025 20:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Aug-2025 20:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Aug-2025 20:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Aug-2025 20:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Aug-2025 20:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Aug-2025 20:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Aug-2025 20:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Aug-2025 20:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Aug-2025 20:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Aug-2025 20:16:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 20:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Aug-2025 20:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Aug-2025 20:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Aug-2025 20:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Aug-2025 20:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Aug-2025 20:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Aug-2025 20:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Aug-2025 20:21:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Aug-2025 20:21:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Aug-2025 20:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Aug-2025 20:21:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Aug-2025 20:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Aug-2025 20:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Aug-2025 20:21:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Aug-2025 20:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Aug-2025 20:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Aug-2025 20:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Aug-2025 20:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 21:31:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Aug-2025 21:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Aug-2025 21:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Aug-2025 21:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Aug-2025 21:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Aug-2025 21:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Aug-2025 21:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Aug-2025 21:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Aug-2025 21:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Aug-2025 21:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Aug-2025 21:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Aug-2025 21:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Aug-2025 21:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Aug-2025 21:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Aug-2025 21:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Aug-2025 21:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Aug-2025 21:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Aug-2025 21:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 21:37:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Aug-2025 21:37:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Aug-2025 21:37:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Aug-2025 21:37:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Aug-2025 21:37:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Aug-2025 21:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Aug-2025 21:37:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Aug-2025 21:37:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Aug-2025 21:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Aug-2025 21:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Aug-2025 21:37:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Aug-2025 21:37:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Aug-2025 21:37:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Aug-2025 21:37:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Aug-2025 21:37:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Aug-2025 21:37:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Aug-2025 21:37:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Aug-2025 21:37:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 22:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Aug-2025 22:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Aug-2025 22:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Aug-2025 22:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Aug-2025 22:54:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Aug-2025 22:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Aug-2025 22:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Aug-2025 22:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Aug-2025 22:54:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Aug-2025 22:54:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Aug-2025 22:54:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Aug-2025 22:54:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Aug-2025 22:54:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Aug-2025 22:54:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Aug-2025 22:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Aug-2025 22:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Aug-2025 22:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Aug-2025 22:54:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2025 05:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2025 05:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2025 05:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2025 05:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2025 05:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2025 05:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2025 05:13:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2025 05:13:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2025 05:13:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2025 05:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2025 05:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2025 05:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2025 05:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2025 05:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2025 05:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2025 05:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2025 05:14:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2025 05:14:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2025 20:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2025 20:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2025 20:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2025 20:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2025 20:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2025 20:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2025 20:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2025 20:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2025 20:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2025 20:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Aug-2025 20:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Aug-2025 20:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Aug-2025 20:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Aug-2025 20:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Aug-2025 20:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Aug-2025 20:00:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Aug-2025 20:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Aug-2025 20:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Aug-2025 20:06:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2025 20:06:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2025 20:06:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2025 20:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2025 20:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2025 20:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2025 20:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2025 20:06:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2025 20:06:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2025 20:06:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Aug-2025 20:06:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Aug-2025 20:06:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Aug-2025 20:06:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Aug-2025 20:06:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Aug-2025 20:06:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Aug-2025 20:06:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Aug-2025 20:06:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Aug-2025 20:06:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [31-Aug-2025 22:43:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [31-Aug-2025 22:43:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [31-Aug-2025 22:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [31-Aug-2025 22:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [31-Aug-2025 22:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [31-Aug-2025 22:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [31-Aug-2025 22:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [31-Aug-2025 22:43:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [31-Aug-2025 22:43:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [31-Aug-2025 22:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [31-Aug-2025 22:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [31-Aug-2025 22:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [31-Aug-2025 22:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [31-Aug-2025 22:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [31-Aug-2025 22:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [31-Aug-2025 22:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [31-Aug-2025 22:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [31-Aug-2025 22:44:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Sep-2025 22:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Sep-2025 22:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Sep-2025 22:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Sep-2025 22:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Sep-2025 22:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Sep-2025 22:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Sep-2025 22:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Sep-2025 22:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Sep-2025 22:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Sep-2025 22:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Sep-2025 22:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Sep-2025 22:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Sep-2025 22:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Sep-2025 22:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Sep-2025 22:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Sep-2025 22:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Sep-2025 22:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Sep-2025 22:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Sep-2025 22:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Sep-2025 22:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Sep-2025 22:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Sep-2025 22:01:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Sep-2025 22:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Sep-2025 22:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Sep-2025 22:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Sep-2025 22:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Sep-2025 22:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Sep-2025 22:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Sep-2025 22:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Sep-2025 22:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Sep-2025 22:02:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Sep-2025 22:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Sep-2025 22:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Sep-2025 22:02:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Sep-2025 22:02:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Sep-2025 22:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Sep-2025 01:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2025 01:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2025 01:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2025 01:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2025 01:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2025 01:03:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2025 01:03:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2025 01:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2025 01:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2025 01:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2025 01:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2025 01:03:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2025 01:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2025 01:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2025 01:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2025 01:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2025 01:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2025 01:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2025 02:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2025 02:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2025 02:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2025 02:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2025 02:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2025 02:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2025 02:12:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2025 02:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2025 02:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2025 02:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Sep-2025 02:12:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Sep-2025 02:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Sep-2025 02:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Sep-2025 02:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Sep-2025 02:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Sep-2025 02:12:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Sep-2025 02:12:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Sep-2025 02:12:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Sep-2025 02:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2025 02:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2025 02:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2025 02:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2025 02:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2025 02:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2025 02:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2025 02:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2025 02:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2025 02:17:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Sep-2025 02:17:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Sep-2025 02:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Sep-2025 02:17:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Sep-2025 02:17:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Sep-2025 02:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Sep-2025 02:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Sep-2025 02:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Sep-2025 02:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Sep-2025 22:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2025 22:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2025 22:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2025 22:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2025 22:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2025 22:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2025 22:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2025 22:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2025 22:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2025 22:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2025 22:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2025 22:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2025 22:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2025 22:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2025 22:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2025 22:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2025 22:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2025 22:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Sep-2025 22:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2025 22:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Sep-2025 22:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Sep-2025 22:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Sep-2025 22:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Sep-2025 22:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Sep-2025 22:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Sep-2025 22:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Sep-2025 22:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Sep-2025 22:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Sep-2025 22:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Sep-2025 22:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Sep-2025 22:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Sep-2025 22:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Sep-2025 22:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Sep-2025 22:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Sep-2025 22:47:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Sep-2025 22:47:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Sep-2025 22:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Sep-2025 22:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Sep-2025 22:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Sep-2025 22:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Sep-2025 22:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Sep-2025 22:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Sep-2025 22:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Sep-2025 22:58:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Sep-2025 22:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Sep-2025 22:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Sep-2025 22:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Sep-2025 22:58:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Sep-2025 22:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Sep-2025 22:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Sep-2025 22:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Sep-2025 22:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Sep-2025 22:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Sep-2025 22:58:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:06:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:06:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:06:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:06:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:06:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:06:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:06:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:06:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:18:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:18:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:18:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:18:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:18:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:18:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:18:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:18:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:18:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:28:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:28:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:28:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:32:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:43:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:43:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:43:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:46:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:46:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:46:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:46:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:48:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:48:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:48:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:48:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:48:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:48:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:48:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:48:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:48:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:48:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:48:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:48:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 00:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 00:50:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 00:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 00:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 00:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 00:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 00:50:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 00:50:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 00:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 00:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 00:50:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 00:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 00:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 00:50:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 00:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 00:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 00:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 00:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 16:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 16:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 16:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 16:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 16:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 16:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 16:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 16:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 16:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 16:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 16:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 16:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 16:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 16:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 16:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 16:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 16:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 16:07:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 22:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 22:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 22:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 22:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 22:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 22:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 22:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 22:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 22:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 22:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 22:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 22:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 22:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 22:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 22:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 22:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 22:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 22:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 23:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 23:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 23:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 23:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 23:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 23:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 23:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 23:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 23:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 23:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 23:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 23:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 23:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 23:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 23:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 23:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 23:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 23:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Sep-2025 23:54:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Sep-2025 23:54:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Sep-2025 23:54:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Sep-2025 23:54:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Sep-2025 23:54:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Sep-2025 23:54:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Sep-2025 23:54:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Sep-2025 23:54:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Sep-2025 23:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Sep-2025 23:54:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Sep-2025 23:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Sep-2025 23:54:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Sep-2025 23:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Sep-2025 23:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Sep-2025 23:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Sep-2025 23:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Sep-2025 23:54:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Sep-2025 23:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 00:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 00:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 00:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 00:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 00:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 00:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 00:11:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 00:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 00:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 00:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 00:12:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 00:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 00:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 00:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 00:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 00:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 00:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 00:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 02:43:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 02:43:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 02:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 02:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 02:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 02:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 02:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 02:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 02:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 02:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 02:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 02:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 02:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 02:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 02:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 02:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 02:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 02:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 09:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 09:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 09:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 09:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 09:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 09:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 09:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 09:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 09:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 09:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 09:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 09:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 09:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 09:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 09:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 09:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 09:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 09:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 09:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 09:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 09:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 09:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 09:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 09:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 09:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 09:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 09:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 09:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 09:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 09:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 09:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 09:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 09:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 09:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 09:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 09:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 09:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 09:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 09:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 09:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 09:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 09:57:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 09:57:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 09:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 09:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 09:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 09:57:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 09:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 09:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 09:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 09:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 09:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 09:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 09:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 10:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 10:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 10:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 10:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 10:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 10:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 10:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 10:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 10:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 10:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 10:02:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 10:02:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 10:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 10:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 10:02:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 10:02:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 10:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 10:02:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 20:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 20:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 20:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 20:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 20:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 20:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 20:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 20:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 20:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 20:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 20:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 20:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 20:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 20:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 20:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 20:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 20:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 20:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Sep-2025 21:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Sep-2025 21:19:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Sep-2025 21:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Sep-2025 21:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Sep-2025 21:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Sep-2025 21:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Sep-2025 21:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Sep-2025 21:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Sep-2025 21:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Sep-2025 21:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Sep-2025 21:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Sep-2025 21:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Sep-2025 21:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Sep-2025 21:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Sep-2025 21:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Sep-2025 21:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Sep-2025 21:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Sep-2025 21:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Sep-2025 23:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Sep-2025 23:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Sep-2025 23:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Sep-2025 23:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Sep-2025 23:25:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Sep-2025 23:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Sep-2025 23:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Sep-2025 23:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Sep-2025 23:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Sep-2025 23:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Sep-2025 23:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Sep-2025 23:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Sep-2025 23:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Sep-2025 23:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Sep-2025 23:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Sep-2025 23:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Sep-2025 23:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Sep-2025 23:25:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 03:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 03:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 03:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 03:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 03:51:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 03:51:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 03:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 03:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 03:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 03:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 03:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 03:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 03:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 03:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 03:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 03:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 03:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 03:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 03:52:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 03:52:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 03:52:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 03:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 03:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 03:52:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 03:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 03:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 03:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 03:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 03:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 03:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 03:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 03:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 03:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 03:52:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 03:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 03:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 17:44:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 17:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 17:45:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 17:45:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 17:45:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 17:45:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 17:45:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 17:46:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 17:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 17:46:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 17:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 17:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 17:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 17:47:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 17:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 17:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 17:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 17:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 21:37:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 21:37:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 21:37:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 21:37:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 21:37:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 21:37:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 21:37:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 21:37:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 21:37:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 21:37:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 21:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 21:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 21:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 21:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 21:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 21:37:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 21:37:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 21:37:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 21:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 21:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 21:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 21:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 21:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 21:42:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 21:42:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 21:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 21:42:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 21:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 21:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 21:42:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 21:42:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 21:42:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 21:42:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 21:42:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 21:42:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 21:42:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 21:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 21:55:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 21:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 21:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 21:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 21:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 21:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 21:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 21:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 21:56:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 21:57:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 21:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 21:57:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 21:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 21:57:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 21:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 21:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 21:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 23:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 23:35:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 23:35:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 23:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 23:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 23:35:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 23:35:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 23:35:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 23:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 23:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 23:36:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 23:36:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 23:36:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 23:36:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 23:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 23:36:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 23:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 23:36:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 23:41:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 23:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 23:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 23:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 23:41:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 23:41:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 23:41:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 23:41:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 23:41:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 23:41:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 23:41:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 23:41:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 23:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 23:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 23:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 23:41:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 23:41:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 23:41:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 23:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 23:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 23:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 23:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 23:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 23:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 23:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 23:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 23:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 23:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 23:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 23:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 23:47:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 23:47:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 23:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 23:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 23:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 23:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Sep-2025 23:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Sep-2025 23:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Sep-2025 23:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Sep-2025 23:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Sep-2025 23:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Sep-2025 23:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Sep-2025 23:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Sep-2025 23:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Sep-2025 23:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Sep-2025 23:51:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Sep-2025 23:51:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Sep-2025 23:51:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Sep-2025 23:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Sep-2025 23:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Sep-2025 23:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Sep-2025 23:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Sep-2025 23:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Sep-2025 23:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Sep-2025 03:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Sep-2025 03:47:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Sep-2025 03:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Sep-2025 03:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Sep-2025 03:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Sep-2025 03:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Sep-2025 03:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Sep-2025 03:48:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Sep-2025 03:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Sep-2025 03:49:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Sep-2025 03:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Sep-2025 03:49:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Sep-2025 03:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Sep-2025 03:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Sep-2025 03:50:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Sep-2025 03:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Sep-2025 03:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Sep-2025 03:50:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Sep-2025 07:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Sep-2025 07:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Sep-2025 07:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Sep-2025 07:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Sep-2025 07:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Sep-2025 07:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Sep-2025 07:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Sep-2025 07:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Sep-2025 07:51:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Sep-2025 07:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Sep-2025 07:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Sep-2025 07:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Sep-2025 07:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Sep-2025 07:52:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Sep-2025 07:52:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Sep-2025 07:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Sep-2025 07:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Sep-2025 07:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Sep-2025 13:23:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Sep-2025 13:24:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Sep-2025 13:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Sep-2025 13:24:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Sep-2025 13:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Sep-2025 13:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Sep-2025 13:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Sep-2025 13:25:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Sep-2025 13:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Sep-2025 13:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Sep-2025 13:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Sep-2025 13:26:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Sep-2025 13:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Sep-2025 13:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Sep-2025 13:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Sep-2025 13:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Sep-2025 13:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Sep-2025 13:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Sep-2025 18:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Sep-2025 18:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Sep-2025 18:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Sep-2025 18:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Sep-2025 18:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Sep-2025 18:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Sep-2025 18:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Sep-2025 18:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Sep-2025 18:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Sep-2025 18:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Sep-2025 18:24:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Sep-2025 18:24:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Sep-2025 18:24:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Sep-2025 18:24:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Sep-2025 18:24:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Sep-2025 18:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Sep-2025 18:25:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Sep-2025 18:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Sep-2025 22:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Sep-2025 22:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Sep-2025 22:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Sep-2025 22:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Sep-2025 22:42:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Sep-2025 22:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Sep-2025 22:42:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Sep-2025 22:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Sep-2025 22:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Sep-2025 22:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Sep-2025 22:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Sep-2025 22:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Sep-2025 22:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Sep-2025 22:44:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Sep-2025 22:44:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Sep-2025 22:45:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Sep-2025 22:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Sep-2025 22:45:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Sep-2025 01:48:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Sep-2025 01:48:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Sep-2025 01:48:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Sep-2025 01:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Sep-2025 01:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Sep-2025 01:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Sep-2025 01:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Sep-2025 01:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Sep-2025 01:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Sep-2025 01:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Sep-2025 01:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Sep-2025 01:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Sep-2025 01:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Sep-2025 01:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Sep-2025 01:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Sep-2025 01:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Sep-2025 01:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Sep-2025 01:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Sep-2025 05:45:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Sep-2025 05:45:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Sep-2025 05:46:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Sep-2025 05:46:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Sep-2025 05:46:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Sep-2025 05:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Sep-2025 05:46:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Sep-2025 05:47:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Sep-2025 05:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Sep-2025 05:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Sep-2025 05:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Sep-2025 05:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Sep-2025 05:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Sep-2025 05:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Sep-2025 05:48:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Sep-2025 05:48:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Sep-2025 05:48:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Sep-2025 05:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Sep-2025 14:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Sep-2025 14:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Sep-2025 14:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Sep-2025 14:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Sep-2025 14:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Sep-2025 14:12:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Sep-2025 14:12:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Sep-2025 14:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Sep-2025 14:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Sep-2025 14:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Sep-2025 14:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Sep-2025 14:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Sep-2025 14:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Sep-2025 14:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Sep-2025 14:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Sep-2025 14:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Sep-2025 14:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Sep-2025 14:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Sep-2025 14:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Sep-2025 14:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Sep-2025 14:18:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Sep-2025 14:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Sep-2025 14:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Sep-2025 14:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Sep-2025 14:18:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Sep-2025 14:18:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Sep-2025 14:18:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Sep-2025 14:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Sep-2025 14:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Sep-2025 14:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Sep-2025 14:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Sep-2025 14:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Sep-2025 14:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Sep-2025 14:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Sep-2025 14:18:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Sep-2025 14:18:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Sep-2025 07:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Sep-2025 07:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Sep-2025 07:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Sep-2025 07:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Sep-2025 07:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Sep-2025 07:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Sep-2025 07:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Sep-2025 07:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Sep-2025 07:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Sep-2025 07:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Sep-2025 07:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Sep-2025 07:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Sep-2025 07:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Sep-2025 07:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Sep-2025 07:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Sep-2025 07:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Sep-2025 07:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Sep-2025 07:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Sep-2025 07:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Sep-2025 07:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Sep-2025 07:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Sep-2025 07:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Sep-2025 07:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Sep-2025 07:56:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Sep-2025 07:56:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Sep-2025 07:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Sep-2025 07:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Sep-2025 07:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Sep-2025 07:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Sep-2025 07:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Sep-2025 07:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Sep-2025 07:56:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Sep-2025 07:56:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Sep-2025 07:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Sep-2025 07:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Sep-2025 07:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Sep-2025 08:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Sep-2025 08:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Sep-2025 08:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Sep-2025 08:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Sep-2025 08:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Sep-2025 08:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Sep-2025 08:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Sep-2025 08:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Sep-2025 08:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Sep-2025 08:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Sep-2025 08:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Sep-2025 08:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Sep-2025 08:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Sep-2025 08:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Sep-2025 08:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Sep-2025 08:01:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Sep-2025 08:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Sep-2025 08:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Sep-2025 08:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Sep-2025 08:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Sep-2025 08:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Sep-2025 08:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Sep-2025 08:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Sep-2025 08:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Sep-2025 08:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Sep-2025 08:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Sep-2025 08:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Sep-2025 08:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Sep-2025 08:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Sep-2025 08:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Sep-2025 08:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Sep-2025 08:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Sep-2025 08:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Sep-2025 08:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Sep-2025 08:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Sep-2025 08:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Sep-2025 21:36:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Sep-2025 21:36:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Sep-2025 21:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Sep-2025 21:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Sep-2025 21:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Sep-2025 21:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Sep-2025 21:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Sep-2025 21:36:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Sep-2025 21:36:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Sep-2025 21:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Sep-2025 21:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Sep-2025 21:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Sep-2025 21:36:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Sep-2025 21:36:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Sep-2025 21:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Sep-2025 21:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Sep-2025 21:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Sep-2025 21:37:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Sep-2025 21:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Sep-2025 21:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Sep-2025 21:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Sep-2025 21:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Sep-2025 21:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Sep-2025 21:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Sep-2025 21:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Sep-2025 21:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Sep-2025 21:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Sep-2025 21:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Sep-2025 21:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Sep-2025 21:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Sep-2025 21:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Sep-2025 21:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Sep-2025 21:40:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Sep-2025 21:40:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Sep-2025 21:40:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Sep-2025 21:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Sep-2025 01:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Sep-2025 01:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Sep-2025 01:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Sep-2025 01:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Sep-2025 01:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Sep-2025 01:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Sep-2025 01:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Sep-2025 01:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Sep-2025 01:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Sep-2025 01:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Sep-2025 01:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Sep-2025 01:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Sep-2025 01:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Sep-2025 01:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Sep-2025 01:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Sep-2025 01:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Sep-2025 01:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Sep-2025 01:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Sep-2025 01:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Sep-2025 01:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Sep-2025 01:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Sep-2025 01:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Sep-2025 01:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Sep-2025 01:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Sep-2025 01:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Sep-2025 01:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Sep-2025 01:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Sep-2025 01:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Sep-2025 01:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Sep-2025 01:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Sep-2025 01:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Sep-2025 01:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Sep-2025 01:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Sep-2025 01:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Sep-2025 01:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Sep-2025 01:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Sep-2025 01:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Sep-2025 01:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Sep-2025 01:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Sep-2025 01:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Sep-2025 01:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Sep-2025 01:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Sep-2025 01:22:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Sep-2025 01:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Sep-2025 01:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Sep-2025 01:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Sep-2025 01:22:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Sep-2025 01:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Sep-2025 01:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Sep-2025 01:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Sep-2025 01:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Sep-2025 01:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Sep-2025 01:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Sep-2025 01:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Sep-2025 01:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Sep-2025 01:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Sep-2025 01:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Sep-2025 01:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Sep-2025 01:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Sep-2025 01:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Sep-2025 01:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Sep-2025 01:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Sep-2025 01:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Sep-2025 01:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Sep-2025 01:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Sep-2025 01:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Sep-2025 01:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Sep-2025 01:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Sep-2025 01:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Sep-2025 01:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Sep-2025 01:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Sep-2025 01:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Sep-2025 17:11:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Sep-2025 17:11:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Sep-2025 17:11:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Sep-2025 17:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Sep-2025 17:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Sep-2025 17:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Sep-2025 17:11:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Sep-2025 17:11:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Sep-2025 17:11:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Sep-2025 17:11:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Sep-2025 17:11:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Sep-2025 17:11:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Sep-2025 17:11:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Sep-2025 17:11:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Sep-2025 17:11:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Sep-2025 17:11:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Sep-2025 17:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Sep-2025 17:11:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Sep-2025 17:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Sep-2025 17:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Sep-2025 17:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Sep-2025 17:15:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Sep-2025 17:15:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Sep-2025 17:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Sep-2025 17:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Sep-2025 17:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Sep-2025 17:16:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Sep-2025 17:16:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Sep-2025 17:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Sep-2025 17:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Sep-2025 17:16:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Sep-2025 17:16:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Sep-2025 17:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Sep-2025 17:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Sep-2025 17:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Sep-2025 17:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2025 21:14:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2025 21:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2025 21:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2025 21:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2025 21:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2025 21:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2025 21:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2025 21:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2025 21:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2025 21:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2025 21:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2025 21:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2025 21:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2025 21:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2025 21:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2025 21:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2025 21:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2025 21:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Sep-2025 21:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Sep-2025 21:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Sep-2025 21:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Sep-2025 21:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Sep-2025 21:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Sep-2025 21:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Sep-2025 21:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Sep-2025 21:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Sep-2025 21:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Sep-2025 21:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Sep-2025 21:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Sep-2025 21:20:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Sep-2025 21:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Sep-2025 21:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Sep-2025 21:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Sep-2025 21:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Sep-2025 21:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Sep-2025 21:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 00:34:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 00:34:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 00:34:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 00:34:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 00:34:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 00:34:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 00:34:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 00:34:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 00:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 00:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 00:34:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 00:34:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 00:34:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 00:34:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 00:35:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 00:35:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 00:35:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 00:35:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 00:39:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 00:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 00:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 00:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 00:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 00:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 00:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 00:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 00:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 00:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 00:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 00:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 00:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 00:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 00:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 00:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 00:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 00:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 01:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 01:52:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 01:52:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 01:52:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 01:52:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 01:52:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 01:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 01:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 01:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 01:52:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 01:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 01:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 01:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 01:52:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 01:52:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 01:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 01:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 01:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 01:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 01:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 01:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 01:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 01:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 01:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 01:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 01:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 01:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 01:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 01:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 01:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 01:57:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 01:57:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 01:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 01:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 01:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 01:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 14:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 14:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 14:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 14:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 14:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 14:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 14:07:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 14:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 14:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 14:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 14:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 14:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 14:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 14:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 14:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 14:07:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 14:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 14:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 14:07:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 14:07:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 14:07:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 14:07:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 14:07:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 14:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 14:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 14:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 14:07:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 14:07:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 14:07:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 14:07:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 14:07:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 14:07:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 14:07:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 14:07:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 14:07:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 14:08:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 14:08:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 14:08:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 14:08:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 14:08:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 14:08:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 14:08:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 14:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 14:08:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 14:08:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 14:08:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 14:08:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 14:08:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 14:08:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 14:08:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 14:08:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 14:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 14:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 14:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 14:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 14:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 14:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 14:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 14:08:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 14:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 14:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 14:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 14:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 14:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 14:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 14:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 14:08:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 14:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 14:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 14:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 14:08:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 14:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 20:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 20:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 20:17:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 20:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 20:17:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 20:17:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 20:17:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 20:17:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 20:17:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 20:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 20:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 20:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 20:17:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 20:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 20:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 20:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 20:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 20:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Sep-2025 20:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Sep-2025 20:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Sep-2025 20:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Sep-2025 20:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Sep-2025 20:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Sep-2025 20:17:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Sep-2025 20:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Sep-2025 20:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Sep-2025 20:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Sep-2025 20:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Sep-2025 20:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Sep-2025 20:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Sep-2025 20:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Sep-2025 20:17:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Sep-2025 20:17:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Sep-2025 20:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Sep-2025 20:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Sep-2025 20:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Sep-2025 23:47:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Sep-2025 23:47:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Sep-2025 23:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Sep-2025 23:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Sep-2025 23:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Sep-2025 23:47:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Sep-2025 23:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Sep-2025 23:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Sep-2025 23:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Sep-2025 23:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Sep-2025 23:47:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Sep-2025 23:47:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Sep-2025 23:47:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Sep-2025 23:47:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Sep-2025 23:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Sep-2025 23:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Sep-2025 23:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Sep-2025 23:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Sep-2025 21:23:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Sep-2025 21:23:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Sep-2025 21:23:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Sep-2025 21:23:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Sep-2025 21:23:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Sep-2025 21:24:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Sep-2025 21:24:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Sep-2025 21:24:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Sep-2025 21:24:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Sep-2025 21:24:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Sep-2025 21:24:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Sep-2025 21:24:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Sep-2025 21:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Sep-2025 21:24:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Sep-2025 21:24:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Sep-2025 21:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Sep-2025 21:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Sep-2025 21:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Sep-2025 02:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Sep-2025 02:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Sep-2025 02:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Sep-2025 02:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Sep-2025 02:39:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Sep-2025 02:39:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Sep-2025 02:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Sep-2025 02:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Sep-2025 02:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Sep-2025 02:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Sep-2025 02:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Sep-2025 02:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Sep-2025 02:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Sep-2025 02:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Sep-2025 02:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Sep-2025 02:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Sep-2025 02:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Sep-2025 02:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Sep-2025 07:34:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Sep-2025 07:35:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Sep-2025 07:35:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Sep-2025 07:35:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Sep-2025 07:35:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Sep-2025 07:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Sep-2025 07:35:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Sep-2025 07:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Sep-2025 07:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Sep-2025 07:35:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Sep-2025 07:35:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Sep-2025 07:35:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Sep-2025 07:35:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Sep-2025 07:35:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Sep-2025 07:35:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Sep-2025 07:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Sep-2025 07:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Sep-2025 07:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Sep-2025 09:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Sep-2025 09:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Sep-2025 09:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Sep-2025 09:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Sep-2025 09:57:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Sep-2025 09:57:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Sep-2025 09:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Sep-2025 09:57:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Sep-2025 09:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Sep-2025 09:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Sep-2025 09:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Sep-2025 09:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Sep-2025 09:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Sep-2025 09:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Sep-2025 09:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Sep-2025 09:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Sep-2025 09:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Sep-2025 09:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Sep-2025 10:03:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Sep-2025 10:03:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Sep-2025 10:03:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Sep-2025 10:03:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Sep-2025 10:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Sep-2025 10:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Sep-2025 10:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Sep-2025 10:03:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Sep-2025 10:03:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Sep-2025 10:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Sep-2025 10:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Sep-2025 10:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Sep-2025 10:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Sep-2025 10:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Sep-2025 10:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Sep-2025 10:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Sep-2025 10:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Sep-2025 10:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Sep-2025 19:48:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Sep-2025 19:48:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Sep-2025 19:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Sep-2025 19:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Sep-2025 19:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Sep-2025 19:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Sep-2025 19:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Sep-2025 19:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Sep-2025 19:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Sep-2025 19:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Sep-2025 19:48:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Sep-2025 19:48:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Sep-2025 19:48:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Sep-2025 19:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Sep-2025 19:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Sep-2025 19:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Sep-2025 19:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Sep-2025 19:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Sep-2025 00:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Sep-2025 00:15:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Sep-2025 00:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Sep-2025 00:15:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Sep-2025 00:15:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Sep-2025 00:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Sep-2025 00:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Sep-2025 00:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Sep-2025 00:15:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Sep-2025 00:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Sep-2025 00:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Sep-2025 00:15:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Sep-2025 00:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Sep-2025 00:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Sep-2025 00:15:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Sep-2025 00:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Sep-2025 00:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Sep-2025 00:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Sep-2025 08:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Sep-2025 08:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Sep-2025 08:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Sep-2025 08:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Sep-2025 08:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Sep-2025 08:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Sep-2025 08:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Sep-2025 08:12:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Sep-2025 08:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Sep-2025 08:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Sep-2025 08:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Sep-2025 08:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Sep-2025 08:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Sep-2025 08:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Sep-2025 08:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Sep-2025 08:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Sep-2025 08:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Sep-2025 08:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Sep-2025 08:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Sep-2025 08:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Sep-2025 08:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Sep-2025 08:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Sep-2025 08:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Sep-2025 08:17:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Sep-2025 08:17:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Sep-2025 08:17:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Sep-2025 08:17:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Sep-2025 08:17:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Sep-2025 08:17:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Sep-2025 08:17:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Sep-2025 08:17:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Sep-2025 08:17:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Sep-2025 08:17:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Sep-2025 08:17:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Sep-2025 08:17:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Sep-2025 08:17:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Sep-2025 09:47:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Sep-2025 09:47:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Sep-2025 09:47:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Sep-2025 09:47:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Sep-2025 09:47:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Sep-2025 09:47:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Sep-2025 09:47:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Sep-2025 09:47:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Sep-2025 09:47:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Sep-2025 09:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Sep-2025 09:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Sep-2025 09:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Sep-2025 09:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Sep-2025 09:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Sep-2025 09:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Sep-2025 09:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Sep-2025 09:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Sep-2025 09:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Sep-2025 12:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Sep-2025 12:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Sep-2025 12:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Sep-2025 12:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Sep-2025 12:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Sep-2025 12:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Sep-2025 12:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Sep-2025 12:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Sep-2025 12:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Sep-2025 12:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Sep-2025 12:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Sep-2025 12:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Sep-2025 12:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Sep-2025 12:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Sep-2025 12:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Sep-2025 12:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Sep-2025 12:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Sep-2025 12:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Sep-2025 03:43:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Sep-2025 03:43:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Sep-2025 03:43:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Sep-2025 03:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Sep-2025 03:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Sep-2025 03:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Sep-2025 03:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Sep-2025 03:43:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Sep-2025 03:43:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Sep-2025 03:43:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Sep-2025 03:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Sep-2025 03:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Sep-2025 03:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Sep-2025 03:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Sep-2025 03:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Sep-2025 03:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Sep-2025 03:44:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Sep-2025 03:44:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Sep-2025 03:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Sep-2025 03:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Sep-2025 03:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Sep-2025 03:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Sep-2025 03:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Sep-2025 03:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Sep-2025 03:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Sep-2025 03:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Sep-2025 03:48:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Sep-2025 03:48:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Sep-2025 03:48:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Sep-2025 03:48:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Sep-2025 03:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Sep-2025 03:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Sep-2025 03:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Sep-2025 03:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Sep-2025 03:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Sep-2025 03:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Sep-2025 11:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Sep-2025 11:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Sep-2025 11:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Sep-2025 11:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Sep-2025 11:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Sep-2025 11:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Sep-2025 11:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Sep-2025 11:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Sep-2025 11:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Sep-2025 11:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Sep-2025 11:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Sep-2025 11:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Sep-2025 11:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Sep-2025 11:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Sep-2025 11:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Sep-2025 11:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Sep-2025 11:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Sep-2025 11:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Sep-2025 11:37:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Sep-2025 11:37:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Sep-2025 11:37:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Sep-2025 11:37:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Sep-2025 11:37:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Sep-2025 11:37:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Sep-2025 11:37:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Sep-2025 11:37:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Sep-2025 11:37:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Sep-2025 11:37:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Sep-2025 11:37:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Sep-2025 11:37:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Sep-2025 11:37:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Sep-2025 11:37:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Sep-2025 11:37:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Sep-2025 11:37:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Sep-2025 11:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Sep-2025 11:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2025 02:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2025 02:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2025 02:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2025 02:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2025 02:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2025 02:23:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2025 02:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2025 02:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2025 02:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2025 02:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2025 02:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2025 02:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2025 02:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2025 02:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2025 02:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2025 02:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2025 02:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2025 02:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2025 02:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2025 02:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2025 02:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2025 02:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2025 02:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2025 02:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2025 02:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2025 02:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2025 02:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2025 02:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2025 02:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2025 02:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2025 02:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2025 02:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2025 02:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2025 02:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2025 02:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2025 02:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2025 06:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2025 06:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2025 06:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2025 06:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2025 06:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2025 06:33:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2025 06:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2025 06:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2025 06:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2025 06:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2025 06:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2025 06:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2025 06:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2025 06:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2025 06:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2025 06:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2025 06:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2025 06:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2025 06:39:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2025 06:39:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2025 06:39:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2025 06:39:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2025 06:39:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2025 06:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2025 06:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2025 06:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2025 06:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2025 06:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2025 06:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2025 06:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2025 06:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2025 06:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2025 06:39:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2025 06:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2025 06:39:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2025 06:39:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2025 10:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2025 10:43:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2025 10:43:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2025 10:43:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2025 10:43:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2025 10:43:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2025 10:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2025 10:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2025 10:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2025 10:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2025 10:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2025 10:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2025 10:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2025 10:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2025 10:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2025 10:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2025 10:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2025 10:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2025 10:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2025 10:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2025 10:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2025 10:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2025 10:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2025 10:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2025 10:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2025 10:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2025 10:48:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2025 10:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2025 10:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2025 10:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2025 10:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2025 10:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2025 10:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2025 10:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2025 10:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2025 10:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Sep-2025 14:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Sep-2025 14:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Sep-2025 14:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Sep-2025 14:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Sep-2025 14:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Sep-2025 14:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Sep-2025 14:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Sep-2025 14:04:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Sep-2025 14:04:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Sep-2025 14:04:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Sep-2025 14:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Sep-2025 14:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Sep-2025 14:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Sep-2025 14:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Sep-2025 14:04:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Sep-2025 14:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Sep-2025 14:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Sep-2025 14:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2025 02:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2025 02:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2025 02:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2025 02:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2025 02:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2025 02:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2025 02:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2025 02:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2025 02:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2025 02:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2025 02:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2025 02:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2025 02:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2025 02:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2025 02:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2025 02:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2025 02:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2025 02:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2025 02:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2025 02:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2025 02:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2025 02:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2025 02:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2025 02:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2025 02:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2025 02:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2025 02:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2025 02:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2025 02:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2025 02:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2025 02:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2025 02:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2025 02:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2025 02:28:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2025 02:28:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2025 02:28:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2025 04:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2025 04:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2025 04:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2025 04:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2025 04:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2025 04:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2025 04:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2025 04:35:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2025 04:35:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2025 04:35:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2025 04:35:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2025 04:35:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2025 04:35:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2025 04:35:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2025 04:35:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2025 04:35:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2025 04:35:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2025 04:35:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2025 04:37:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2025 04:37:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2025 04:37:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2025 04:37:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2025 04:37:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2025 04:37:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2025 04:37:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2025 04:37:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2025 04:37:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2025 04:37:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2025 04:37:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2025 04:37:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2025 04:37:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2025 04:37:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2025 04:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2025 04:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2025 04:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2025 04:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2025 04:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2025 04:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2025 04:41:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2025 04:41:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2025 04:41:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2025 04:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2025 04:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2025 04:41:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2025 04:41:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2025 04:41:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2025 04:41:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2025 04:41:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2025 04:41:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2025 04:41:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2025 04:41:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2025 04:41:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2025 04:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2025 04:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2025 04:43:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2025 04:43:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2025 04:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2025 04:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2025 04:43:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2025 04:43:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2025 04:43:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2025 04:43:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2025 04:43:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2025 04:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2025 04:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2025 04:43:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2025 04:43:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2025 04:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2025 04:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2025 04:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2025 04:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2025 04:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Sep-2025 14:05:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Sep-2025 14:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Sep-2025 14:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Sep-2025 14:05:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Sep-2025 14:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Sep-2025 14:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Sep-2025 14:05:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Sep-2025 14:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Sep-2025 14:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Sep-2025 14:06:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Sep-2025 14:06:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Sep-2025 14:06:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Sep-2025 14:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Sep-2025 14:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Sep-2025 14:06:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Sep-2025 14:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Sep-2025 14:06:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Sep-2025 14:06:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Sep-2025 01:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Sep-2025 01:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Sep-2025 01:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Sep-2025 01:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Sep-2025 01:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Sep-2025 01:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Sep-2025 01:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Sep-2025 01:33:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Sep-2025 01:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Sep-2025 01:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Sep-2025 01:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Sep-2025 01:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Sep-2025 01:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Sep-2025 01:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Sep-2025 01:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Sep-2025 01:33:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Sep-2025 01:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Sep-2025 01:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Sep-2025 01:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Sep-2025 01:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Sep-2025 01:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Sep-2025 01:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Sep-2025 01:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Sep-2025 01:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Sep-2025 01:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Sep-2025 01:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Sep-2025 01:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Sep-2025 01:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Sep-2025 01:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Sep-2025 01:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Sep-2025 01:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Sep-2025 01:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Sep-2025 01:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Sep-2025 01:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Sep-2025 01:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Sep-2025 01:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Sep-2025 08:45:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Sep-2025 08:45:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Sep-2025 08:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Sep-2025 08:45:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Sep-2025 08:45:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Sep-2025 08:45:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Sep-2025 08:45:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Sep-2025 08:45:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Sep-2025 08:45:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Sep-2025 08:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Sep-2025 08:45:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Sep-2025 08:45:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Sep-2025 08:45:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Sep-2025 08:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Sep-2025 08:45:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Sep-2025 08:45:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Sep-2025 08:45:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Sep-2025 08:45:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Sep-2025 23:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Sep-2025 23:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Sep-2025 23:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Sep-2025 23:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Sep-2025 23:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Sep-2025 23:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Sep-2025 23:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Sep-2025 23:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Sep-2025 23:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Sep-2025 23:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Sep-2025 23:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Sep-2025 23:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Sep-2025 23:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Sep-2025 23:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Sep-2025 23:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Sep-2025 23:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Sep-2025 23:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Sep-2025 23:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Sep-2025 23:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Sep-2025 23:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Sep-2025 23:59:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Sep-2025 23:59:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Sep-2025 23:59:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Sep-2025 23:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Sep-2025 23:59:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2025 00:00:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2025 00:00:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2025 00:00:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2025 00:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2025 00:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2025 00:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2025 00:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2025 00:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2025 00:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2025 00:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2025 00:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2025 05:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2025 05:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2025 05:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2025 05:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2025 05:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2025 05:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2025 05:25:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2025 05:25:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2025 05:25:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2025 05:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2025 05:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2025 05:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2025 05:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2025 05:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2025 05:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2025 05:26:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2025 05:26:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2025 05:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2025 05:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2025 05:30:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2025 05:30:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2025 05:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2025 05:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2025 05:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2025 05:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2025 05:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2025 05:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2025 05:30:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2025 05:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2025 05:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2025 05:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2025 05:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2025 05:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2025 05:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2025 05:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2025 05:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2025 13:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2025 13:04:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2025 13:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2025 13:04:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2025 13:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2025 13:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2025 13:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2025 13:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2025 13:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2025 13:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2025 13:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2025 13:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2025 13:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2025 13:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2025 13:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2025 13:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2025 13:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2025 13:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2025 13:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2025 13:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2025 13:08:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2025 13:08:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2025 13:09:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2025 13:09:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2025 13:09:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2025 13:09:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2025 13:09:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2025 13:09:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2025 13:09:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2025 13:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2025 13:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2025 13:09:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2025 13:09:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2025 13:09:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2025 13:09:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2025 13:09:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2025 20:08:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2025 20:08:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2025 20:08:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2025 20:08:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2025 20:08:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2025 20:08:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2025 20:08:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2025 20:08:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2025 20:08:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2025 20:08:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2025 20:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2025 20:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2025 20:08:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2025 20:08:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2025 20:08:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2025 20:08:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2025 20:08:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2025 20:08:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Sep-2025 20:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Sep-2025 20:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Sep-2025 20:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Sep-2025 20:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Sep-2025 20:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Sep-2025 20:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Sep-2025 20:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Sep-2025 20:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Sep-2025 20:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Sep-2025 20:12:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Sep-2025 20:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Sep-2025 20:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Sep-2025 20:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Sep-2025 20:12:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Sep-2025 20:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Sep-2025 20:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Sep-2025 20:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Sep-2025 20:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 02:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 02:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 02:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 02:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 02:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 02:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 02:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 02:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 02:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 02:57:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 02:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 02:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 02:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 02:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 02:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2025 02:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 02:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 02:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 03:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 03:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 03:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 03:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 03:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 03:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 03:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 03:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 03:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 03:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 03:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 03:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 03:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 03:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 03:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2025 03:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 03:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 03:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 13:26:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 13:26:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 13:26:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 13:26:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 13:26:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 13:26:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 13:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 13:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 13:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 13:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 13:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 13:26:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 13:26:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 13:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 13:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2025 13:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 13:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 13:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 13:29:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 13:29:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 13:29:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 13:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 13:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 13:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 13:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 13:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 13:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 13:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 13:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 13:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 13:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 13:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 13:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2025 13:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 13:29:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 13:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 22:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 22:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 22:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 22:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Sep-2025 22:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 22:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 22:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 22:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Sep-2025 22:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 22:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 22:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 22:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Sep-2025 22:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 22:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 22:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 22:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Sep-2025 22:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 22:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 22:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 22:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Sep-2025 22:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 22:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 22:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 22:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Sep-2025 22:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 22:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 22:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 22:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Sep-2025 22:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 22:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 22:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 22:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Sep-2025 22:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 22:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 22:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 22:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Sep-2025 22:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 22:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 22:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 22:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Sep-2025 22:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 22:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 22:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 22:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Sep-2025 22:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 22:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 22:56:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 22:56:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Sep-2025 22:56:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 22:56:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 22:56:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 22:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Sep-2025 22:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 22:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 22:56:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 22:56:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Sep-2025 22:56:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 22:56:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 22:57:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 22:57:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Sep-2025 22:57:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 22:57:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 22:57:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 22:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Sep-2025 22:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 22:57:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 22:57:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 22:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Sep-2025 22:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2025 22:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2025 22:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Sep-2025 22:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2025 16:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2025 16:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2025 16:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2025 16:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2025 16:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2025 16:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2025 16:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2025 16:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2025 16:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2025 16:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2025 16:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2025 16:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2025 16:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2025 16:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2025 16:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2025 16:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2025 16:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2025 16:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2025 16:27:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2025 16:27:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2025 16:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2025 16:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2025 16:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2025 16:27:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2025 16:27:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2025 16:27:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2025 16:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2025 16:27:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2025 16:27:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2025 16:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2025 16:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2025 16:27:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2025 16:27:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2025 16:27:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2025 16:27:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2025 16:27:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2025 20:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2025 20:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2025 20:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2025 20:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Sep-2025 20:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2025 20:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2025 20:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2025 20:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Sep-2025 20:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2025 20:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2025 20:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2025 20:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Sep-2025 20:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2025 20:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2025 20:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2025 20:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Sep-2025 20:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2025 20:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2025 20:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2025 20:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Sep-2025 20:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2025 20:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2025 20:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2025 20:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Sep-2025 20:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2025 20:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2025 20:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2025 20:22:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Sep-2025 20:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2025 20:22:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2025 20:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2025 20:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Sep-2025 20:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2025 20:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2025 20:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2025 20:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Sep-2025 20:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2025 20:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2025 20:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2025 20:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Sep-2025 20:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2025 20:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2025 20:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2025 20:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Sep-2025 20:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2025 20:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2025 20:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2025 20:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Sep-2025 20:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2025 20:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2025 20:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2025 20:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Sep-2025 20:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2025 20:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2025 20:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2025 20:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Sep-2025 20:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2025 20:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2025 20:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2025 20:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Sep-2025 20:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2025 20:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2025 20:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2025 20:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Sep-2025 20:23:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2025 20:23:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2025 20:23:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2025 20:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Sep-2025 20:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2025 20:23:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2025 20:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Sep-2025 20:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Sep-2025 03:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Sep-2025 03:23:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Sep-2025 03:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Sep-2025 03:23:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Sep-2025 03:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Sep-2025 03:23:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Sep-2025 03:23:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Sep-2025 03:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Sep-2025 03:23:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Sep-2025 03:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Sep-2025 03:23:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Sep-2025 03:23:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Sep-2025 03:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Sep-2025 03:23:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Sep-2025 03:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Sep-2025 03:23:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Sep-2025 03:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Sep-2025 03:23:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Sep-2025 03:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Sep-2025 03:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Sep-2025 03:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Sep-2025 03:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Sep-2025 03:27:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Sep-2025 03:27:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Sep-2025 03:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Sep-2025 03:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Sep-2025 03:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Sep-2025 03:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Sep-2025 03:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Sep-2025 03:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Sep-2025 03:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Sep-2025 03:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Sep-2025 03:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Sep-2025 03:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Sep-2025 03:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Sep-2025 03:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Sep-2025 10:35:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Sep-2025 10:35:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Sep-2025 10:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Sep-2025 10:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Sep-2025 10:35:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Sep-2025 10:35:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Sep-2025 10:35:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Sep-2025 10:35:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Sep-2025 10:35:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Sep-2025 10:35:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Sep-2025 10:35:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Sep-2025 10:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Sep-2025 10:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Sep-2025 10:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Sep-2025 10:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Sep-2025 10:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Sep-2025 10:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Sep-2025 10:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Sep-2025 10:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Sep-2025 10:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Sep-2025 10:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Sep-2025 10:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Sep-2025 10:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Sep-2025 10:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Sep-2025 10:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Sep-2025 10:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Sep-2025 10:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Sep-2025 10:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Sep-2025 10:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Sep-2025 10:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Sep-2025 10:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Sep-2025 10:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Sep-2025 10:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Sep-2025 10:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Sep-2025 10:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Sep-2025 10:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Sep-2025 17:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Sep-2025 17:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Sep-2025 17:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Sep-2025 17:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Sep-2025 17:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Sep-2025 17:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Sep-2025 17:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Sep-2025 17:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Sep-2025 17:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Sep-2025 17:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Sep-2025 17:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Sep-2025 17:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Sep-2025 17:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Sep-2025 17:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Sep-2025 17:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Sep-2025 17:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Sep-2025 17:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Sep-2025 17:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2025 01:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2025 01:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2025 01:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2025 01:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2025 01:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2025 01:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2025 01:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2025 01:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2025 01:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2025 01:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2025 01:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2025 01:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2025 01:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2025 01:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2025 01:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2025 01:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2025 01:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2025 01:59:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2025 02:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2025 02:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2025 02:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2025 02:04:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2025 02:04:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2025 02:04:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2025 02:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2025 02:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2025 02:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2025 02:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2025 02:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2025 02:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2025 02:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2025 02:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2025 02:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2025 02:04:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2025 02:04:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2025 02:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2025 04:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2025 04:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2025 04:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2025 04:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2025 04:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2025 04:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2025 04:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2025 04:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2025 04:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2025 04:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2025 04:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2025 04:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2025 04:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2025 04:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2025 04:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2025 04:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2025 04:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2025 04:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2025 05:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2025 05:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2025 05:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2025 05:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2025 05:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2025 05:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2025 05:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2025 05:26:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2025 05:26:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2025 05:26:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2025 05:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2025 05:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2025 05:26:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2025 05:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2025 05:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2025 05:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2025 05:26:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2025 05:26:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2025 17:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2025 17:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2025 17:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2025 17:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2025 17:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2025 17:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2025 17:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2025 17:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2025 17:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2025 17:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2025 17:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2025 17:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2025 17:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2025 17:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2025 17:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2025 17:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2025 17:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2025 17:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Oct-2025 20:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Oct-2025 20:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Oct-2025 20:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Oct-2025 20:24:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Oct-2025 20:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Oct-2025 20:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Oct-2025 20:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Oct-2025 20:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Oct-2025 20:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Oct-2025 20:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Oct-2025 20:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Oct-2025 20:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Oct-2025 20:24:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Oct-2025 20:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Oct-2025 20:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Oct-2025 20:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Oct-2025 20:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Oct-2025 20:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2025 00:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2025 00:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2025 00:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2025 00:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2025 00:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2025 00:50:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2025 00:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2025 00:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2025 00:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2025 00:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2025 00:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2025 00:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2025 00:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2025 00:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2025 00:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2025 00:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2025 00:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2025 00:50:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2025 06:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2025 06:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2025 06:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2025 06:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2025 06:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2025 06:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2025 06:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2025 06:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2025 06:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2025 06:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2025 06:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2025 06:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2025 06:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2025 06:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2025 06:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2025 06:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2025 06:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2025 06:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2025 07:26:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2025 07:26:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2025 07:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2025 07:26:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2025 07:26:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2025 07:26:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2025 07:26:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2025 07:26:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2025 07:26:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2025 07:26:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2025 07:26:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2025 07:26:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2025 07:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2025 07:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2025 07:26:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2025 07:26:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2025 07:26:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2025 07:26:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2025 07:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2025 07:30:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2025 07:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2025 07:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2025 07:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2025 07:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2025 07:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2025 07:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2025 07:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2025 07:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2025 07:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2025 07:31:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2025 07:31:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2025 07:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2025 07:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2025 07:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2025 07:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2025 07:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2025 08:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2025 08:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2025 08:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2025 08:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2025 08:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2025 08:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2025 08:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2025 08:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2025 08:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2025 08:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2025 08:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2025 08:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2025 08:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2025 08:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2025 08:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2025 08:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2025 08:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2025 08:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2025 13:04:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2025 13:04:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2025 13:04:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2025 13:04:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2025 13:04:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2025 13:04:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2025 13:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2025 13:04:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2025 13:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2025 13:04:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2025 13:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2025 13:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2025 13:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2025 13:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2025 13:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2025 13:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2025 13:04:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2025 13:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Oct-2025 17:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Oct-2025 17:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Oct-2025 17:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Oct-2025 17:38:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Oct-2025 17:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Oct-2025 17:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Oct-2025 17:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Oct-2025 17:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Oct-2025 17:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Oct-2025 17:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Oct-2025 17:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Oct-2025 17:38:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Oct-2025 17:38:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Oct-2025 17:38:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Oct-2025 17:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Oct-2025 17:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Oct-2025 17:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Oct-2025 17:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Oct-2025 12:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Oct-2025 12:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Oct-2025 12:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Oct-2025 12:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Oct-2025 12:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Oct-2025 12:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Oct-2025 12:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Oct-2025 12:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Oct-2025 12:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Oct-2025 12:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Oct-2025 12:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Oct-2025 12:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Oct-2025 12:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Oct-2025 12:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Oct-2025 12:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Oct-2025 12:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Oct-2025 12:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Oct-2025 12:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Oct-2025 12:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Oct-2025 12:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Oct-2025 12:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Oct-2025 12:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Oct-2025 12:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Oct-2025 12:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Oct-2025 12:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Oct-2025 12:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Oct-2025 12:18:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Oct-2025 12:18:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Oct-2025 12:18:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Oct-2025 12:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Oct-2025 12:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Oct-2025 12:18:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Oct-2025 12:18:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Oct-2025 12:18:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Oct-2025 12:18:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Oct-2025 12:18:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Oct-2025 16:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Oct-2025 16:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Oct-2025 16:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Oct-2025 16:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Oct-2025 16:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Oct-2025 16:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Oct-2025 16:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Oct-2025 16:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Oct-2025 16:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Oct-2025 16:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Oct-2025 16:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Oct-2025 16:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Oct-2025 16:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Oct-2025 16:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Oct-2025 16:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Oct-2025 16:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Oct-2025 16:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Oct-2025 16:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Oct-2025 21:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Oct-2025 21:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Oct-2025 21:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Oct-2025 21:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Oct-2025 21:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Oct-2025 21:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Oct-2025 21:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Oct-2025 21:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Oct-2025 21:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Oct-2025 21:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Oct-2025 21:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Oct-2025 21:31:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Oct-2025 21:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Oct-2025 21:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Oct-2025 21:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Oct-2025 21:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Oct-2025 21:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Oct-2025 21:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Oct-2025 21:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Oct-2025 21:38:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Oct-2025 21:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Oct-2025 21:38:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Oct-2025 21:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Oct-2025 21:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Oct-2025 21:38:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Oct-2025 21:38:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Oct-2025 21:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Oct-2025 21:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Oct-2025 21:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Oct-2025 21:38:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Oct-2025 21:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Oct-2025 21:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Oct-2025 21:38:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Oct-2025 21:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Oct-2025 21:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Oct-2025 21:38:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Oct-2025 00:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Oct-2025 00:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Oct-2025 00:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Oct-2025 00:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Oct-2025 00:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Oct-2025 00:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Oct-2025 00:08:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Oct-2025 00:08:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Oct-2025 00:09:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Oct-2025 00:09:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Oct-2025 00:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Oct-2025 00:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Oct-2025 00:09:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Oct-2025 00:09:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Oct-2025 00:09:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Oct-2025 00:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Oct-2025 00:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Oct-2025 00:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Oct-2025 00:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Oct-2025 00:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Oct-2025 00:16:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Oct-2025 00:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Oct-2025 00:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Oct-2025 00:16:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Oct-2025 00:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Oct-2025 00:16:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Oct-2025 00:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Oct-2025 00:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Oct-2025 00:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Oct-2025 00:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Oct-2025 00:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Oct-2025 00:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Oct-2025 00:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Oct-2025 00:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Oct-2025 00:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Oct-2025 00:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Oct-2025 21:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Oct-2025 21:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Oct-2025 21:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Oct-2025 21:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Oct-2025 21:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Oct-2025 21:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Oct-2025 21:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Oct-2025 21:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Oct-2025 21:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Oct-2025 21:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Oct-2025 21:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Oct-2025 21:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Oct-2025 21:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Oct-2025 21:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Oct-2025 05:30:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Oct-2025 05:30:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Oct-2025 05:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Oct-2025 05:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Oct-2025 05:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Oct-2025 05:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Oct-2025 05:30:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Oct-2025 05:30:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Oct-2025 05:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Oct-2025 05:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Oct-2025 05:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Oct-2025 05:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Oct-2025 05:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Oct-2025 05:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Oct-2025 05:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Oct-2025 05:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Oct-2025 05:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Oct-2025 05:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Oct-2025 05:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Oct-2025 05:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Oct-2025 05:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Oct-2025 05:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Oct-2025 05:30:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Oct-2025 05:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Oct-2025 05:30:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Oct-2025 05:30:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Oct-2025 05:30:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Oct-2025 05:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Oct-2025 05:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Oct-2025 05:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Oct-2025 05:30:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Oct-2025 05:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Oct-2025 05:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Oct-2025 05:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Oct-2025 05:30:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Oct-2025 05:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Oct-2025 05:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Oct-2025 05:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Oct-2025 05:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Oct-2025 05:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Oct-2025 05:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Oct-2025 05:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Oct-2025 05:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Oct-2025 05:30:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Oct-2025 05:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Oct-2025 05:31:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Oct-2025 05:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Oct-2025 05:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Oct-2025 05:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Oct-2025 05:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Oct-2025 05:31:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Oct-2025 05:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Oct-2025 05:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Oct-2025 05:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Oct-2025 05:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Oct-2025 05:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Oct-2025 05:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Oct-2025 05:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Oct-2025 05:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Oct-2025 05:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Oct-2025 05:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Oct-2025 05:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Oct-2025 05:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Oct-2025 05:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Oct-2025 05:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Oct-2025 05:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Oct-2025 05:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Oct-2025 05:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Oct-2025 05:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Oct-2025 05:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Oct-2025 05:31:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Oct-2025 05:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Oct-2025 02:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Oct-2025 02:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Oct-2025 02:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Oct-2025 02:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Oct-2025 02:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Oct-2025 02:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Oct-2025 02:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Oct-2025 02:01:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Oct-2025 02:01:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Oct-2025 02:01:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Oct-2025 02:01:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Oct-2025 02:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Oct-2025 02:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Oct-2025 02:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Oct-2025 02:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Oct-2025 02:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Oct-2025 02:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Oct-2025 02:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Oct-2025 02:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Oct-2025 02:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Oct-2025 02:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Oct-2025 02:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Oct-2025 02:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Oct-2025 02:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Oct-2025 02:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Oct-2025 02:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Oct-2025 02:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Oct-2025 02:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Oct-2025 02:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Oct-2025 02:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Oct-2025 02:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Oct-2025 02:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Oct-2025 02:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Oct-2025 02:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Oct-2025 02:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Oct-2025 02:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Oct-2025 02:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Oct-2025 02:02:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Oct-2025 02:02:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Oct-2025 02:02:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Oct-2025 02:02:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Oct-2025 02:02:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Oct-2025 02:02:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Oct-2025 02:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Oct-2025 02:02:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Oct-2025 02:02:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Oct-2025 02:02:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Oct-2025 02:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Oct-2025 02:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Oct-2025 02:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Oct-2025 02:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Oct-2025 02:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Oct-2025 02:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Oct-2025 02:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Oct-2025 02:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Oct-2025 02:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Oct-2025 02:02:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Oct-2025 02:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Oct-2025 02:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Oct-2025 02:02:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Oct-2025 02:02:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Oct-2025 02:02:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Oct-2025 02:02:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Oct-2025 02:02:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Oct-2025 02:02:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Oct-2025 02:02:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Oct-2025 02:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Oct-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Oct-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Oct-2025 02:02:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Oct-2025 02:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Oct-2025 02:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 09:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 09:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 09:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 09:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 09:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 09:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 09:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 09:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 09:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 09:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 09:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 09:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 09:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 09:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 09:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 09:41:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 09:41:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 09:41:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 09:41:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 09:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 09:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 09:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 09:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 09:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 09:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 09:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 09:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 09:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 09:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 09:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 09:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 09:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 09:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 09:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 09:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 09:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 09:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 09:42:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 09:42:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 09:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 09:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 09:42:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 09:42:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 09:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 09:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 09:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 09:42:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 09:42:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 09:42:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 09:42:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 09:42:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 09:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 09:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 09:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 09:42:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 09:42:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 09:42:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 09:42:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 09:42:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 09:42:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 09:42:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 09:42:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 09:42:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 09:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 09:42:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 09:42:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 09:42:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 09:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 09:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 09:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 09:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 09:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 15:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 15:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 15:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 15:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 15:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 15:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 15:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 15:00:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 15:00:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 15:00:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 15:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 15:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 15:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 15:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 15:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 15:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 15:00:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 15:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 15:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 15:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 15:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 15:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 15:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 15:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 15:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 15:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 15:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 15:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 15:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 15:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 15:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 15:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 15:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 15:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 15:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 15:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 15:00:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 15:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 15:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 15:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 15:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 15:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 15:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 15:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 15:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 15:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 15:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 15:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 15:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 15:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 15:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 15:00:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 15:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 15:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 15:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 15:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 15:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 15:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 15:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 15:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 15:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 15:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 15:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 15:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 15:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 15:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 15:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 15:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 15:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 15:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 18:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 18:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 18:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 18:16:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 18:16:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 18:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 18:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 18:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 18:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 18:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 18:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 18:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 18:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 18:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 18:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 18:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 18:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 18:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Oct-2025 18:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Oct-2025 18:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Oct-2025 18:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Oct-2025 18:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Oct-2025 18:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Oct-2025 18:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Oct-2025 18:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Oct-2025 18:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Oct-2025 18:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Oct-2025 18:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Oct-2025 18:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Oct-2025 18:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Oct-2025 18:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Oct-2025 18:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Oct-2025 18:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Oct-2025 18:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Oct-2025 18:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Oct-2025 18:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 05:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 05:27:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 05:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 05:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 05:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 05:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 05:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 05:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 05:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 05:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 05:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 05:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 05:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 05:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 05:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 05:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 05:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 05:28:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 05:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 05:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 05:33:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 05:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 05:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 05:33:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 05:33:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 05:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 05:33:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 05:33:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 05:33:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 05:33:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 05:33:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 05:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 05:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 05:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 05:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 05:33:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 14:18:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 14:18:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 14:18:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 14:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 14:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 14:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 14:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 14:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 14:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 14:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 14:18:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 14:18:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 14:18:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 14:18:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 14:18:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 14:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 14:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 14:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 14:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 14:18:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 14:18:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 14:18:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 14:18:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 14:18:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 14:18:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 14:18:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 14:18:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 14:18:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 14:18:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 14:19:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 14:19:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 14:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 14:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 14:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 14:19:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 14:19:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 14:19:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 14:19:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 14:19:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 14:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 14:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 14:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 14:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 14:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 14:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 14:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 14:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 14:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 14:19:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 14:19:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 14:19:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 14:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 14:19:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 14:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 14:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 14:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 14:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 14:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 14:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 14:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 14:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 14:19:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 14:19:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 14:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 14:19:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 14:19:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 14:19:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 14:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 14:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 14:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 14:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 14:19:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 23:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 23:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 23:02:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 23:02:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Oct-2025 23:02:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 23:02:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 23:02:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 23:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Oct-2025 23:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 23:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 23:02:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 23:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Oct-2025 23:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 23:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 23:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 23:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Oct-2025 23:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 23:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 23:02:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 23:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Oct-2025 23:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 23:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 23:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 23:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Oct-2025 23:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 23:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 23:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 23:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Oct-2025 23:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 23:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 23:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 23:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Oct-2025 23:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 23:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 23:02:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 23:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Oct-2025 23:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 23:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 23:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 23:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Oct-2025 23:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 23:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 23:03:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 23:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Oct-2025 23:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 23:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 23:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 23:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Oct-2025 23:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 23:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 23:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 23:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Oct-2025 23:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 23:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 23:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 23:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Oct-2025 23:03:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 23:03:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 23:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 23:03:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Oct-2025 23:03:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 23:03:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 23:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 23:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Oct-2025 23:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 23:03:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 23:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 23:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Oct-2025 23:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 23:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 23:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Oct-2025 23:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 00:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 00:25:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 00:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 00:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 00:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 00:25:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 00:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 00:25:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 00:25:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 00:25:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 00:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 00:25:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 00:25:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 00:25:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 00:25:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 00:25:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 00:25:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 00:25:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 00:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 00:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 00:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 00:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 00:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 00:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 00:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 00:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 00:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 00:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 00:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 00:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 00:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 00:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 00:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 00:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 00:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 00:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 00:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 00:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 00:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 00:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 00:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 00:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 00:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 00:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 00:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 00:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 00:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 00:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 00:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 00:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 00:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 00:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 00:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 00:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 00:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 00:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 00:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 00:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 00:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 00:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 00:31:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 00:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 00:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 00:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 00:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 00:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 00:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 00:31:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 00:31:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 00:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 00:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 00:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 06:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 06:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 06:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 06:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 06:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 06:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 06:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 06:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 06:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 06:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 06:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 06:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 06:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 06:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 06:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 06:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 06:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 06:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 06:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 06:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 06:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 06:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 06:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 06:23:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 06:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 06:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 06:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 06:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 06:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 06:23:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 06:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 06:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 06:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 06:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 06:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 06:23:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 09:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 09:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 09:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 09:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 09:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 09:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 09:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 09:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 09:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 09:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 09:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 09:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 09:32:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 09:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 09:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 09:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 09:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 09:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 09:37:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 09:37:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 09:37:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 09:37:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 09:37:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 09:37:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 09:37:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 09:37:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 09:37:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 09:37:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 09:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 09:37:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 09:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 09:37:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 09:37:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 09:37:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 09:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 09:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 11:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 11:15:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 11:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 11:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 11:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 11:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 11:15:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 11:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 11:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 11:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 11:15:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 11:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 11:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 11:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 11:15:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 11:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 11:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 11:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 11:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 11:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 11:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 11:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 11:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 11:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 11:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 11:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 11:15:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 11:16:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 11:16:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 11:16:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 11:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 11:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 11:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 11:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 11:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 11:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 11:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 11:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 11:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 11:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 11:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 11:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 11:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 11:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 11:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 11:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 11:16:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 11:16:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 11:16:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 11:16:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 11:16:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 11:16:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 11:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 11:16:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 11:16:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 11:16:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 11:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 11:16:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 11:16:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 11:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 11:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 11:16:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 11:16:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 11:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 11:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 11:16:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 11:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 11:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 11:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 11:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 11:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 11:16:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 21:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 21:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 21:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 21:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 21:51:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 21:51:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 21:51:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 21:51:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 21:51:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 21:51:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 21:51:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 21:51:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 21:51:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 21:51:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 21:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 21:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 21:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 21:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 21:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 21:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 21:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 21:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 21:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 21:51:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 21:51:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 21:51:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 21:51:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 21:51:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 21:51:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 21:51:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 21:51:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 21:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 21:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 21:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 21:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 21:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 21:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 21:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 21:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 21:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 21:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 21:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 21:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 21:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 21:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 21:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 21:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 21:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 21:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 21:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 21:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 21:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 21:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 21:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 21:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 21:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 21:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 21:51:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 21:51:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 21:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 21:52:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 21:52:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 21:52:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 21:52:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 21:52:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 21:52:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 21:52:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 21:52:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 21:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 21:52:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 21:52:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 21:52:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 22:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 22:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 22:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 22:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 22:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 22:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Oct-2025 22:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Oct-2025 22:54:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Oct-2025 22:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Oct-2025 22:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Oct-2025 22:54:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Oct-2025 22:54:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Oct-2025 22:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Oct-2025 22:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Oct-2025 22:54:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Oct-2025 22:54:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Oct-2025 22:54:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Oct-2025 22:54:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Oct-2025 22:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Oct-2025 22:54:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Oct-2025 22:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Oct-2025 22:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Oct-2025 22:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Oct-2025 22:54:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 09:28:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 09:28:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 09:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 09:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 09:28:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 09:28:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 09:28:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 09:28:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 09:28:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 09:28:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 09:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 09:28:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 09:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 09:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 09:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 09:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 09:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 09:28:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 09:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 09:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 09:34:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 09:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 09:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 09:34:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 09:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 09:34:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 09:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 09:34:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 09:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 09:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 09:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 09:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 09:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 09:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 09:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 09:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 10:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 10:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 10:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 10:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 10:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 10:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 10:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 10:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 10:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 10:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 10:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 10:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 10:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 10:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 10:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 10:00:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 10:00:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 10:00:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 10:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 10:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 10:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 10:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 10:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 10:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 10:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 10:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 10:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 10:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 10:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 10:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 10:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 10:00:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 10:00:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 10:00:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 10:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 10:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 10:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 10:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 10:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 10:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 10:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 10:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 10:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 10:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 10:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 10:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 10:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 10:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 10:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 10:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 10:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 10:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 10:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 10:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 10:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 10:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 10:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 10:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 10:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 10:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 10:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 10:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 10:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 10:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 10:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 10:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 10:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 10:01:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 10:01:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 10:01:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 10:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 10:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 20:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 20:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 20:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 20:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 20:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 20:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 20:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 20:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 20:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 20:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 20:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 20:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 20:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 20:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 20:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 20:49:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 20:49:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 20:49:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 20:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 20:50:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 20:50:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 20:50:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 20:50:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 20:50:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 20:50:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 20:50:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 20:50:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 20:50:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 20:50:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 20:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 20:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 20:50:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 20:50:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 20:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 20:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 20:50:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 20:50:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 20:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 20:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 20:50:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 20:50:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 20:51:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 20:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 20:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 20:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 20:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 20:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 20:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 20:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 20:51:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 20:51:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 20:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 20:51:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 20:51:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 20:51:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 20:51:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 20:51:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 20:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 20:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 20:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 20:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 20:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 20:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 20:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 20:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 20:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 20:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 20:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 20:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 20:51:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [15-Oct-2025 20:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 20:51:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 20:51:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 20:51:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 20:51:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 20:51:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 20:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 20:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 20:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 20:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 20:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 20:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 20:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 20:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 20:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 20:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 20:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 20:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 20:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 20:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 21:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [15-Oct-2025 21:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [15-Oct-2025 21:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [15-Oct-2025 21:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [15-Oct-2025 21:04:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [15-Oct-2025 21:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [15-Oct-2025 21:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [15-Oct-2025 21:04:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [15-Oct-2025 21:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [15-Oct-2025 21:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [15-Oct-2025 21:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [15-Oct-2025 21:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [15-Oct-2025 21:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [15-Oct-2025 21:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [15-Oct-2025 21:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [15-Oct-2025 21:04:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [15-Oct-2025 21:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [15-Oct-2025 21:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 01:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 01:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 01:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 01:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 01:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 01:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 01:08:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 01:08:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 01:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 01:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 01:08:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 01:08:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 01:08:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 01:08:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 01:08:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 01:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 01:08:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 01:08:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 01:08:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 01:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 01:08:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 01:08:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 01:08:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 01:08:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 01:08:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 01:08:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 01:09:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 01:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 01:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 01:09:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 01:09:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 01:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 01:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 01:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 01:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 01:09:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 01:09:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 01:09:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 01:09:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 01:09:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 01:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 01:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 01:09:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 01:09:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 01:09:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 01:09:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 01:09:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 01:09:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 01:09:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 01:09:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 01:09:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 01:09:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 01:09:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 01:09:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 01:09:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 01:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 01:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 01:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 01:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 01:09:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 01:09:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 01:09:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 01:09:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 01:09:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 01:09:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 01:09:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 01:09:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 01:09:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 01:09:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 01:09:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 01:09:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 01:09:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 06:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 06:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 06:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 06:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 06:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 06:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 06:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 06:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 06:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 06:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 06:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 06:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 06:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 06:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 06:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 06:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 06:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 06:55:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 08:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 08:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 08:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 08:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 08:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 08:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 08:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 08:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 08:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 08:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 08:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 08:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 08:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 08:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 08:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 08:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 08:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 08:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 08:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 08:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 08:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 08:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 08:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 08:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 08:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 08:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 08:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 08:31:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 08:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 08:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 08:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 08:31:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 08:31:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 08:31:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 08:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 08:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 08:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 08:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 08:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 08:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 08:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 08:31:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 08:31:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 08:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 08:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 08:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 08:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 08:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 08:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 08:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 08:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 08:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 08:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 08:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 08:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 08:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 08:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 08:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 08:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 08:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 08:32:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 08:32:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 08:32:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 08:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 08:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 08:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 08:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 08:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 08:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 08:32:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 08:32:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 08:32:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 10:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 10:00:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 10:00:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 10:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 10:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 10:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 10:00:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 10:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 10:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 10:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 10:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 10:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 10:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 10:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 10:00:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 10:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 10:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 10:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 10:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 10:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 10:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 10:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 10:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 10:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 10:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 10:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 10:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 10:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 10:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 10:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 10:00:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 10:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 10:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 10:00:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 10:00:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 10:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 10:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 10:00:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 10:00:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 10:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 10:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 10:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 10:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 10:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 10:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 10:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 10:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 10:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 10:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 10:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 10:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 10:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 10:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 10:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 10:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 10:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 10:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 10:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 10:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 10:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 10:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 10:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 10:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 10:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 10:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 10:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 10:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 10:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 10:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 10:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 10:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 10:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 10:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 10:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 10:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 10:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 10:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 10:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 10:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 10:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 10:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 10:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 10:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 10:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 10:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 10:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 10:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 10:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 10:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 10:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 18:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 18:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 18:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 18:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 18:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 18:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 18:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 18:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 18:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 18:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 18:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 18:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 18:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 18:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 18:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 18:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 18:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 18:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 18:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 18:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 18:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 18:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 18:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 18:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 18:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 18:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 18:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 18:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 18:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 18:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 18:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 18:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 18:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 18:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 18:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 18:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 19:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 19:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 19:49:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 19:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Oct-2025 19:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 19:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 19:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 19:49:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Oct-2025 19:49:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 19:49:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 19:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 19:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Oct-2025 19:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 19:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 19:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 19:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Oct-2025 19:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 19:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 19:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 19:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Oct-2025 19:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 19:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 19:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 19:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Oct-2025 19:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 19:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 19:49:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 19:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Oct-2025 19:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 19:49:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 19:49:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 19:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Oct-2025 19:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 19:49:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 19:50:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 19:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Oct-2025 19:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 19:50:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 19:50:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 19:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Oct-2025 19:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 19:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 19:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 19:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Oct-2025 19:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 19:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 19:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 19:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Oct-2025 19:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 19:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 19:50:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 19:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Oct-2025 19:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 19:50:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 19:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 19:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Oct-2025 19:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 19:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 19:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 19:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Oct-2025 19:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 19:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 19:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 19:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Oct-2025 19:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 19:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 19:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 19:50:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Oct-2025 19:50:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 19:50:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 19:50:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Oct-2025 19:50:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 01:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 01:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 01:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 01:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 01:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 01:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 01:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 01:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 01:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 01:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 01:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 01:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 01:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 01:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 01:40:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 01:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 01:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 01:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 04:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 04:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 04:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 04:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 04:11:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 04:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 04:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 04:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 04:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 04:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 04:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 04:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 04:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 04:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 04:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 04:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 04:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 04:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 04:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 04:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 04:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 04:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 04:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 04:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 04:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 04:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 04:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 04:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 04:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 04:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 04:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 04:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 04:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 04:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 04:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 04:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 04:39:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 04:39:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 04:39:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 04:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 04:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 04:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 04:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 04:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 04:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 04:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 04:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 04:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 04:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 04:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 04:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 04:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 04:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 04:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 04:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 04:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 04:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 04:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 04:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 04:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 04:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 04:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 04:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 04:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 04:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 04:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 04:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 04:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 04:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 04:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 04:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 04:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 04:40:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 04:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 04:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 04:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 04:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 04:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 04:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 04:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 04:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 04:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 04:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 04:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 04:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 04:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 04:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 04:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 04:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 04:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 06:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 06:35:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 06:35:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 06:35:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 06:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 06:35:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 06:35:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 06:35:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 06:35:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 06:35:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 06:35:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 06:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 06:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 06:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 06:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 06:35:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 06:35:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 06:35:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 06:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 06:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 06:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 06:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 06:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 06:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 06:41:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 06:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 06:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 06:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 06:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 06:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 06:41:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 06:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 06:41:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 06:41:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 06:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 06:41:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 07:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 07:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 07:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 07:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 07:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 07:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 07:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 07:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 07:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 07:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 07:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 07:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 07:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 07:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 07:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 07:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 07:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 07:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 13:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 13:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 13:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 13:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 13:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 13:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 13:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 13:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 13:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 13:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 13:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 13:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 13:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 13:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 13:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 13:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 13:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 13:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Oct-2025 21:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Oct-2025 21:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Oct-2025 21:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Oct-2025 21:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Oct-2025 21:33:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Oct-2025 21:33:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Oct-2025 21:33:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Oct-2025 21:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Oct-2025 21:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Oct-2025 21:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Oct-2025 21:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Oct-2025 21:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Oct-2025 21:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Oct-2025 21:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Oct-2025 21:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Oct-2025 21:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Oct-2025 21:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Oct-2025 21:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Oct-2025 06:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Oct-2025 06:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Oct-2025 06:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Oct-2025 06:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Oct-2025 06:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Oct-2025 06:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Oct-2025 06:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Oct-2025 06:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Oct-2025 06:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Oct-2025 06:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Oct-2025 06:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Oct-2025 06:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Oct-2025 06:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Oct-2025 06:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Oct-2025 06:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Oct-2025 06:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Oct-2025 06:08:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Oct-2025 06:08:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Oct-2025 13:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Oct-2025 13:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Oct-2025 13:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Oct-2025 13:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Oct-2025 13:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Oct-2025 13:43:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Oct-2025 13:43:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Oct-2025 13:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Oct-2025 13:43:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Oct-2025 13:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Oct-2025 13:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Oct-2025 13:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Oct-2025 13:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Oct-2025 13:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Oct-2025 13:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Oct-2025 13:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Oct-2025 13:43:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Oct-2025 13:44:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Oct-2025 13:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Oct-2025 13:53:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Oct-2025 13:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Oct-2025 13:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Oct-2025 13:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Oct-2025 13:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Oct-2025 13:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Oct-2025 13:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Oct-2025 13:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Oct-2025 13:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Oct-2025 13:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Oct-2025 13:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Oct-2025 13:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Oct-2025 13:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Oct-2025 13:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Oct-2025 13:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Oct-2025 13:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Oct-2025 13:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Oct-2025 21:20:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Oct-2025 21:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Oct-2025 21:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Oct-2025 21:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Oct-2025 21:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Oct-2025 21:20:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Oct-2025 21:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Oct-2025 21:20:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Oct-2025 21:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Oct-2025 21:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Oct-2025 21:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Oct-2025 21:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Oct-2025 21:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Oct-2025 21:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Oct-2025 21:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Oct-2025 21:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Oct-2025 21:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Oct-2025 21:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Oct-2025 21:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Oct-2025 21:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Oct-2025 21:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Oct-2025 21:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Oct-2025 21:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Oct-2025 21:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Oct-2025 21:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Oct-2025 21:27:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Oct-2025 21:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Oct-2025 21:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Oct-2025 21:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Oct-2025 21:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Oct-2025 21:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Oct-2025 21:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Oct-2025 21:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Oct-2025 21:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Oct-2025 21:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Oct-2025 21:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 14:09:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 14:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 14:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 14:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 14:09:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 14:09:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 14:09:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 14:09:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 14:09:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 14:09:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 14:09:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 14:09:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 14:09:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 14:09:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 14:09:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 14:09:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 14:09:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 14:09:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 14:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 14:14:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 14:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 14:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 14:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 14:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 14:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 14:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 14:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 14:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 14:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 14:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 14:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 14:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 14:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 14:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 14:15:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 14:15:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 16:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 16:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 16:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 16:48:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 16:48:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 16:48:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 16:48:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 16:48:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 16:48:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 16:48:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 16:48:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 16:48:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 16:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 16:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 16:48:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 16:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 16:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 16:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 16:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 16:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 16:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 16:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 16:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 16:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 16:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 16:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 16:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 16:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 16:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 16:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 16:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 16:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 16:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 16:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 16:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 16:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 17:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 17:24:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 17:24:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 17:24:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 17:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 17:24:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 17:24:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 17:24:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 17:24:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 17:24:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 17:24:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 17:24:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 17:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 17:24:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 17:24:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 17:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 17:24:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 17:24:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 17:24:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 17:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 17:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 17:24:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 17:24:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 17:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 17:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 17:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 17:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 17:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 17:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 17:24:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 17:24:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 17:25:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 17:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 17:25:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 17:25:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 17:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 17:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 17:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 17:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 17:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 17:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 17:25:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 17:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 17:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 17:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 17:25:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 17:25:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 17:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 17:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 17:25:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 17:25:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 17:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 17:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 17:25:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 17:25:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 17:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 17:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 17:25:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 17:25:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 17:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 17:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 17:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 17:25:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 17:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 17:25:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 17:25:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 17:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 17:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 17:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 17:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 17:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 17:25:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 21:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 21:04:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 21:04:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 21:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Oct-2025 21:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 21:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 21:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 21:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Oct-2025 21:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 21:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 21:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 21:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Oct-2025 21:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 21:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 21:05:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 21:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Oct-2025 21:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 21:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 21:05:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 21:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Oct-2025 21:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 21:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 21:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 21:05:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Oct-2025 21:05:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 21:05:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 21:05:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 21:05:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Oct-2025 21:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 21:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 21:05:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 21:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Oct-2025 21:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 21:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 21:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 21:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Oct-2025 21:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 21:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 21:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 21:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Oct-2025 21:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 21:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 21:05:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 21:05:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Oct-2025 21:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 21:05:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 21:05:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 21:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Oct-2025 21:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 21:05:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 21:05:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 21:05:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Oct-2025 21:05:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 21:05:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 21:05:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 21:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Oct-2025 21:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 21:05:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 21:05:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 21:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Oct-2025 21:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 21:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 21:05:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 21:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [19-Oct-2025 21:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 21:06:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 21:06:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 21:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Oct-2025 21:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 21:06:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 21:06:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Oct-2025 21:06:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 00:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 00:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 00:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 00:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 00:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 00:22:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 00:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 00:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 00:22:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 00:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 00:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 00:22:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 00:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 00:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 00:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 00:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 00:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 00:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 01:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 01:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 01:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 01:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 01:48:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 01:48:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 01:48:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 01:48:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 01:48:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 01:48:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 01:48:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 01:48:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 01:48:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 01:48:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 01:48:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 01:48:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 01:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 01:48:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 05:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 05:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 05:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 05:44:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 05:44:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 05:44:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 05:44:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 05:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 05:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 05:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 05:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 05:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 05:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 05:44:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 05:44:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 05:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 05:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 05:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 06:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 06:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 06:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 06:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 06:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 06:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 06:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 06:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 06:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 06:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 06:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 06:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 06:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 06:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 06:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 06:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 06:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 06:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 11:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 11:31:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 11:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 11:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 11:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 11:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 11:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 11:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 11:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 11:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 11:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 11:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 11:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 11:31:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 11:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 11:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 11:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 11:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 11:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 11:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 11:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 11:31:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 11:31:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 11:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 11:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 11:31:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 11:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 11:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 11:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 11:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 11:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 11:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 11:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 11:31:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 11:31:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 11:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 13:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 13:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 13:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 13:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 13:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 13:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 13:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 13:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 13:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 13:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 13:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 13:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 13:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 13:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 13:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 13:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 13:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 13:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 14:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 14:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 14:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 14:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 14:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 14:38:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 14:38:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 14:38:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 14:38:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 14:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 14:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 14:38:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 14:38:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 14:38:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 14:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 14:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 14:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 14:38:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 21:39:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 21:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 21:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 21:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 21:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 21:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 21:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 21:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 21:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 21:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 21:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 21:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 21:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 21:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 21:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 21:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 21:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 21:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Oct-2025 22:14:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Oct-2025 22:14:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Oct-2025 22:14:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Oct-2025 22:14:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Oct-2025 22:14:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Oct-2025 22:14:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Oct-2025 22:14:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Oct-2025 22:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Oct-2025 22:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Oct-2025 22:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Oct-2025 22:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Oct-2025 22:14:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Oct-2025 22:14:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Oct-2025 22:14:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Oct-2025 22:14:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Oct-2025 22:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Oct-2025 22:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Oct-2025 22:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 04:59:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 04:59:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 04:59:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 04:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 04:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 04:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 04:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 04:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 04:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 04:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 04:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 04:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 04:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 04:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 04:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 04:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 04:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 04:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 05:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 05:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 05:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 05:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 05:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 05:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 05:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 05:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 05:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 05:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 05:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 05:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 05:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 05:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 05:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 05:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 05:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 05:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 08:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 08:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 08:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 08:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 08:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 08:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 08:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 08:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 08:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 08:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 08:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 08:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 08:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 08:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 08:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 08:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 08:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 08:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 15:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 15:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 15:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 15:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 15:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 15:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 15:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 15:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 15:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 15:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 15:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 15:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 15:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 15:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 15:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 15:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 15:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 15:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 17:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 17:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 17:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 17:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 17:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 17:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 17:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 17:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 17:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 17:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 17:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 17:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 17:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 17:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 17:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 17:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 17:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 17:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 17:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 17:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 17:50:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 17:50:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 17:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 17:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 17:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 17:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 17:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 17:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 17:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 17:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 17:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 17:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 17:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 17:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 17:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 17:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 17:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 17:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 17:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 17:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 17:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 17:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 17:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 17:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 17:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 17:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 17:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 17:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 17:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 17:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 17:57:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 17:57:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 17:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 17:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 18:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 18:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 18:23:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 18:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 18:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 18:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 18:23:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 18:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 18:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 18:23:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 18:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 18:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 18:23:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 18:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 18:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 18:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 18:23:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 18:23:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 21:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 21:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 21:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 21:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 21:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 21:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 21:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 21:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 21:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 21:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 21:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 21:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 21:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 21:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 21:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 21:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 21:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 21:33:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 21:33:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 21:33:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 21:33:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 21:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 21:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 21:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 21:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 21:33:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 21:33:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 21:33:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 21:33:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 21:33:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 21:33:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 21:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 21:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 22:34:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 22:34:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 22:34:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 22:34:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 22:34:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 22:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 22:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 22:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 22:34:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 22:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 22:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 22:34:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 22:34:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 22:34:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 22:34:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 22:34:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 22:34:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 22:34:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 22:40:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 22:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 22:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 22:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 22:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 22:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 22:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 22:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 22:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 22:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 22:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 22:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 22:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 22:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 22:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 22:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 22:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 22:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Oct-2025 23:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Oct-2025 23:43:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Oct-2025 23:43:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Oct-2025 23:43:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Oct-2025 23:43:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Oct-2025 23:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Oct-2025 23:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Oct-2025 23:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Oct-2025 23:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Oct-2025 23:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Oct-2025 23:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Oct-2025 23:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Oct-2025 23:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Oct-2025 23:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Oct-2025 23:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Oct-2025 23:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Oct-2025 23:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Oct-2025 23:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Oct-2025 01:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Oct-2025 01:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Oct-2025 01:16:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Oct-2025 01:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Oct-2025 01:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Oct-2025 01:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Oct-2025 01:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Oct-2025 01:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Oct-2025 01:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Oct-2025 01:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Oct-2025 01:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Oct-2025 01:16:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Oct-2025 01:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Oct-2025 01:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Oct-2025 01:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Oct-2025 01:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Oct-2025 01:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Oct-2025 01:16:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Oct-2025 22:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Oct-2025 22:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Oct-2025 22:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Oct-2025 22:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Oct-2025 22:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Oct-2025 22:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Oct-2025 22:29:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Oct-2025 22:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Oct-2025 22:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Oct-2025 22:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Oct-2025 22:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Oct-2025 22:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Oct-2025 22:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Oct-2025 22:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Oct-2025 22:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Oct-2025 22:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Oct-2025 22:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Oct-2025 22:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2025 00:38:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2025 00:38:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2025 00:38:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2025 00:38:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2025 00:38:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2025 00:38:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2025 00:38:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2025 00:38:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2025 00:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2025 00:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2025 00:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2025 00:38:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2025 00:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2025 00:38:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2025 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2025 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2025 00:38:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2025 00:38:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2025 03:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2025 03:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2025 03:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2025 03:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2025 03:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2025 03:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2025 03:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2025 03:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2025 03:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2025 03:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2025 03:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2025 03:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2025 03:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2025 03:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2025 03:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2025 03:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2025 03:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2025 03:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2025 05:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2025 05:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2025 05:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2025 05:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2025 05:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2025 05:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2025 05:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2025 05:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2025 05:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2025 05:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2025 05:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2025 05:13:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2025 05:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2025 05:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2025 05:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2025 05:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2025 05:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2025 05:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2025 09:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2025 09:10:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2025 09:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2025 09:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2025 09:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2025 09:10:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2025 09:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2025 09:10:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2025 09:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2025 09:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2025 09:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2025 09:10:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2025 09:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2025 09:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2025 09:10:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2025 09:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2025 09:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2025 09:10:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2025 17:11:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2025 17:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2025 17:11:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2025 17:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2025 17:11:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2025 17:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2025 17:11:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2025 17:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2025 17:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2025 17:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2025 17:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2025 17:11:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2025 17:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2025 17:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2025 17:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2025 17:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2025 17:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2025 17:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2025 17:19:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2025 17:19:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2025 17:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2025 17:19:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2025 17:19:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2025 17:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2025 17:19:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2025 17:19:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2025 17:19:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2025 17:19:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2025 17:19:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2025 17:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2025 17:19:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2025 17:19:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2025 17:19:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2025 17:19:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2025 17:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2025 17:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Oct-2025 21:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Oct-2025 21:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Oct-2025 21:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Oct-2025 21:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Oct-2025 21:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Oct-2025 21:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Oct-2025 21:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Oct-2025 21:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Oct-2025 21:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Oct-2025 21:44:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Oct-2025 21:44:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Oct-2025 21:44:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Oct-2025 21:44:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Oct-2025 21:44:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Oct-2025 21:44:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Oct-2025 21:44:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Oct-2025 21:44:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Oct-2025 21:44:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Oct-2025 00:09:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Oct-2025 00:09:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Oct-2025 00:09:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Oct-2025 00:09:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Oct-2025 00:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Oct-2025 00:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Oct-2025 00:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Oct-2025 00:09:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Oct-2025 00:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Oct-2025 00:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Oct-2025 00:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Oct-2025 00:09:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Oct-2025 00:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Oct-2025 00:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Oct-2025 00:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Oct-2025 00:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Oct-2025 00:09:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Oct-2025 00:09:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Oct-2025 19:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Oct-2025 19:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Oct-2025 19:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Oct-2025 19:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Oct-2025 19:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Oct-2025 19:30:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Oct-2025 19:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Oct-2025 19:30:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Oct-2025 19:30:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Oct-2025 19:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Oct-2025 19:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Oct-2025 19:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Oct-2025 19:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Oct-2025 19:30:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Oct-2025 19:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Oct-2025 19:30:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Oct-2025 19:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Oct-2025 19:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Oct-2025 03:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Oct-2025 03:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Oct-2025 03:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Oct-2025 03:40:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Oct-2025 03:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Oct-2025 03:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Oct-2025 03:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Oct-2025 03:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Oct-2025 03:40:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Oct-2025 03:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Oct-2025 03:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Oct-2025 03:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Oct-2025 03:40:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Oct-2025 03:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Oct-2025 03:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Oct-2025 03:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Oct-2025 03:40:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Oct-2025 03:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Oct-2025 04:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Oct-2025 04:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Oct-2025 04:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Oct-2025 04:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Oct-2025 04:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Oct-2025 04:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Oct-2025 04:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Oct-2025 04:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Oct-2025 04:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Oct-2025 04:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Oct-2025 04:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Oct-2025 04:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Oct-2025 04:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Oct-2025 04:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Oct-2025 04:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Oct-2025 04:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Oct-2025 04:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Oct-2025 04:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Oct-2025 07:43:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Oct-2025 07:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Oct-2025 07:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Oct-2025 07:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Oct-2025 07:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Oct-2025 07:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Oct-2025 07:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Oct-2025 07:43:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Oct-2025 07:43:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Oct-2025 07:44:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Oct-2025 07:44:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Oct-2025 07:44:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Oct-2025 07:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Oct-2025 07:44:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Oct-2025 07:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Oct-2025 07:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Oct-2025 07:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Oct-2025 07:44:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 13:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Oct-2025 13:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Oct-2025 13:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Oct-2025 13:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Oct-2025 13:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 13:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 13:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 13:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 13:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 13:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 13:56:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 13:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 13:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 13:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 13:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 13:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 13:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 13:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 13:56:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 13:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 13:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 13:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 13:56:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 13:56:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 13:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 13:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 13:56:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 13:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 13:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 13:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 13:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 13:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 13:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 13:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 13:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 13:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 13:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 13:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 13:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 13:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 13:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 13:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 13:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 13:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 13:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 13:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 13:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 13:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 13:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 13:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 13:56:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 13:56:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 13:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 13:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 13:56:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 13:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 13:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 13:56:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 13:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 13:56:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 13:56:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 13:56:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 13:56:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 13:56:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 13:56:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 13:56:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 13:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 13:56:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 13:56:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 13:56:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 13:56:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 13:57:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 23:17:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 23:17:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 23:17:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 23:17:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Oct-2025 23:17:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 23:17:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 23:17:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 23:17:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Oct-2025 23:17:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 23:17:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 23:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 23:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Oct-2025 23:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 23:17:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 23:17:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 23:17:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Oct-2025 23:17:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 23:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 23:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 23:17:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Oct-2025 23:17:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 23:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 23:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 23:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Oct-2025 23:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 23:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 23:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 23:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Oct-2025 23:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 23:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 23:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 23:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Oct-2025 23:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 23:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 23:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 23:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Oct-2025 23:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 23:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 23:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 23:17:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Oct-2025 23:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 23:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 23:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 23:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Oct-2025 23:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 23:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 23:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 23:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Oct-2025 23:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 23:17:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 23:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 23:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Oct-2025 23:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 23:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 23:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 23:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Oct-2025 23:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 23:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 23:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 23:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Oct-2025 23:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 23:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 23:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 23:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Oct-2025 23:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 23:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 23:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 23:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Oct-2025 23:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Oct-2025 23:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Oct-2025 23:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Oct-2025 23:18:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 17:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 17:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 17:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 17:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 17:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 17:33:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 17:33:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 17:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 17:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 17:33:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 17:33:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 17:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 17:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 17:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 17:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 17:33:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 17:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 17:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 17:33:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 17:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 17:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 17:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 17:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 17:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 17:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2025 17:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2025 17:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2025 17:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2025 17:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 17:34:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 17:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 17:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 17:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 17:34:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 17:34:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 17:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 17:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 17:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 17:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 17:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 17:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 17:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 17:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 17:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 17:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 17:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 17:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 17:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 17:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 17:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 17:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 17:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 17:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 17:34:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 17:34:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 17:34:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 17:34:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 17:34:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 17:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 17:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 17:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 17:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 17:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 17:34:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 17:34:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 17:34:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 17:34:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 17:34:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 17:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 17:34:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 17:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 17:34:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 20:55:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 20:55:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 20:55:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 20:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Oct-2025 20:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 20:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 20:55:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 20:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Oct-2025 20:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 20:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 20:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 20:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Oct-2025 20:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 20:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 20:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 20:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Oct-2025 20:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 20:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 20:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 20:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Oct-2025 20:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 20:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 20:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 20:56:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Oct-2025 20:56:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 20:56:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 20:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 20:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Oct-2025 20:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 20:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 20:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 20:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Oct-2025 20:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 20:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 20:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 20:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Oct-2025 20:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 20:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 20:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 20:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Oct-2025 20:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 20:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 20:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 20:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Oct-2025 20:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 20:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 20:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 20:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Oct-2025 20:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 20:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 20:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 20:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Oct-2025 20:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 20:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 20:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 20:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Oct-2025 20:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 20:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 20:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 20:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Oct-2025 20:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 20:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 20:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 20:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Oct-2025 20:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 20:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 20:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 20:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Oct-2025 20:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2025 20:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2025 20:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Oct-2025 20:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Oct-2025 21:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Oct-2025 21:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Oct-2025 21:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Oct-2025 21:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Oct-2025 21:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Oct-2025 21:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Oct-2025 21:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Oct-2025 21:57:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Oct-2025 21:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Oct-2025 21:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Oct-2025 21:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Oct-2025 21:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Oct-2025 21:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Oct-2025 21:58:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Oct-2025 21:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Oct-2025 21:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Oct-2025 21:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Oct-2025 21:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Oct-2025 21:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Oct-2025 21:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Oct-2025 21:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Oct-2025 21:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Oct-2025 21:58:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Oct-2025 21:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Oct-2025 21:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Oct-2025 21:58:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Oct-2025 21:58:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Oct-2025 21:58:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Oct-2025 21:58:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Oct-2025 21:58:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Oct-2025 21:58:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Oct-2025 21:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Oct-2025 21:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Oct-2025 21:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Oct-2025 21:58:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Oct-2025 21:58:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Oct-2025 21:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Oct-2025 21:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Oct-2025 21:58:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Oct-2025 21:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Oct-2025 21:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Oct-2025 21:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Oct-2025 21:58:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Oct-2025 21:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Oct-2025 21:58:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Oct-2025 21:58:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Oct-2025 21:58:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Oct-2025 21:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Oct-2025 21:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Oct-2025 21:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Oct-2025 21:58:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Oct-2025 21:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Oct-2025 21:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Oct-2025 21:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Oct-2025 21:58:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Oct-2025 21:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Oct-2025 21:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Oct-2025 21:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Oct-2025 21:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Oct-2025 21:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Oct-2025 21:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Oct-2025 21:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Oct-2025 21:58:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Oct-2025 21:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Oct-2025 21:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Oct-2025 21:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Oct-2025 21:58:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Oct-2025 21:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Oct-2025 21:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Oct-2025 21:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Oct-2025 21:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Oct-2025 21:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:19:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 06:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:19:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 06:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 06:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 06:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:20:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:20:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Oct-2025 09:20:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:20:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Oct-2025 09:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:20:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:20:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Oct-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:20:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:21:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:21:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:21:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Oct-2025 09:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Oct-2025 09:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Oct-2025 09:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Oct-2025 09:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Oct-2025 09:21:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:28:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 03:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 03:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 03:28:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:29:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 03:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 03:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 03:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 03:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 03:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 03:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 03:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 04:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 04:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 04:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 04:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 04:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 04:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 04:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 04:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 04:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 04:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 04:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 04:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 04:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 04:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 04:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 04:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 04:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 04:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 04:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 04:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 04:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 04:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 04:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 04:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 04:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 04:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 04:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 04:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 04:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 04:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 04:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 04:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 04:36:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 04:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 04:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 04:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 09:16:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 09:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 09:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 09:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 09:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 09:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 09:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 09:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 09:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 09:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 09:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 09:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 09:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 09:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 09:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 09:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 09:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 09:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 09:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 09:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 09:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 09:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 09:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 09:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 09:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 09:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 09:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 09:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 09:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 09:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 09:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 09:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 09:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 09:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 09:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 09:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:12:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:12:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:12:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 12:12:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 12:12:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 12:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 12:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:12:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:12:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:12:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:12:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:12:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:13:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:13:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:17:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 12:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 12:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 12:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:17:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 12:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 12:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:17:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:17:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:17:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 12:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:17:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:17:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 12:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:17:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:17:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 12:17:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 12:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 12:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 12:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 12:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 12:18:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:18:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:18:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:18:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 12:18:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:18:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:18:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 12:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:18:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:18:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:18:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 12:18:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:18:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:18:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 12:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 12:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 12:18:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 12:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Nov-2025 20:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Nov-2025 20:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Nov-2025 20:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Nov-2025 20:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Nov-2025 20:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Nov-2025 20:26:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Nov-2025 20:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Nov-2025 20:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:27:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Nov-2025 20:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Nov-2025 20:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Nov-2025 20:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Nov-2025 20:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Nov-2025 20:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Nov-2025 20:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Nov-2025 20:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Nov-2025 20:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Nov-2025 20:27:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Nov-2025 20:27:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Nov-2025 16:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Nov-2025 16:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Nov-2025 16:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Nov-2025 16:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Nov-2025 16:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Nov-2025 16:03:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Nov-2025 16:03:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Nov-2025 16:03:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Nov-2025 16:03:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Nov-2025 16:03:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Nov-2025 16:03:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Nov-2025 16:03:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Nov-2025 16:03:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Nov-2025 16:03:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Nov-2025 16:04:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Nov-2025 16:04:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Nov-2025 16:04:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Nov-2025 16:04:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Nov-2025 06:35:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Nov-2025 06:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Nov-2025 06:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Nov-2025 06:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Nov-2025 06:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Nov-2025 06:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Nov-2025 06:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Nov-2025 06:35:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Nov-2025 06:35:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Nov-2025 06:35:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Nov-2025 06:35:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Nov-2025 06:35:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Nov-2025 06:35:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Nov-2025 06:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Nov-2025 06:35:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Nov-2025 06:35:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Nov-2025 06:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Nov-2025 06:35:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Nov-2025 06:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Nov-2025 06:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Nov-2025 06:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Nov-2025 06:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Nov-2025 06:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Nov-2025 06:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Nov-2025 06:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Nov-2025 06:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Nov-2025 06:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Nov-2025 06:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Nov-2025 06:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Nov-2025 06:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Nov-2025 06:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Nov-2025 06:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Nov-2025 06:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Nov-2025 06:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Nov-2025 06:41:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Nov-2025 06:41:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Nov-2025 15:51:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Nov-2025 15:51:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Nov-2025 15:51:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Nov-2025 15:51:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Nov-2025 15:51:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Nov-2025 15:51:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Nov-2025 15:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Nov-2025 15:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Nov-2025 15:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Nov-2025 15:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Nov-2025 15:51:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Nov-2025 15:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Nov-2025 15:51:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Nov-2025 15:51:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Nov-2025 15:51:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Nov-2025 15:51:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Nov-2025 15:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Nov-2025 15:51:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Nov-2025 15:58:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Nov-2025 15:58:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Nov-2025 15:58:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Nov-2025 15:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Nov-2025 15:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Nov-2025 15:58:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Nov-2025 15:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Nov-2025 15:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Nov-2025 15:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Nov-2025 15:58:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Nov-2025 15:58:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Nov-2025 15:58:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Nov-2025 15:58:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Nov-2025 15:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Nov-2025 15:58:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Nov-2025 15:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Nov-2025 15:58:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Nov-2025 15:58:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Nov-2025 20:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Nov-2025 20:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Nov-2025 20:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Nov-2025 20:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Nov-2025 20:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Nov-2025 20:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Nov-2025 20:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Nov-2025 20:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Nov-2025 20:07:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Nov-2025 20:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Nov-2025 20:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Nov-2025 20:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Nov-2025 20:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Nov-2025 20:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Nov-2025 20:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Nov-2025 20:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Nov-2025 20:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Nov-2025 20:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Nov-2025 20:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Nov-2025 20:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Nov-2025 20:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Nov-2025 20:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Nov-2025 20:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Nov-2025 20:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Nov-2025 20:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Nov-2025 20:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Nov-2025 20:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Nov-2025 20:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Nov-2025 20:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Nov-2025 20:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Nov-2025 20:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Nov-2025 20:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Nov-2025 20:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Nov-2025 20:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Nov-2025 20:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Nov-2025 20:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Nov-2025 01:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Nov-2025 01:48:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Nov-2025 01:48:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Nov-2025 01:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Nov-2025 01:48:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Nov-2025 01:48:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Nov-2025 01:48:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Nov-2025 01:48:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Nov-2025 01:48:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Nov-2025 01:48:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Nov-2025 01:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Nov-2025 01:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Nov-2025 01:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Nov-2025 01:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Nov-2025 01:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Nov-2025 01:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Nov-2025 01:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Nov-2025 01:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Nov-2025 05:30:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Nov-2025 05:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Nov-2025 05:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Nov-2025 05:30:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Nov-2025 05:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Nov-2025 05:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Nov-2025 05:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Nov-2025 05:30:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Nov-2025 05:30:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Nov-2025 05:30:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Nov-2025 05:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Nov-2025 05:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Nov-2025 05:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Nov-2025 05:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Nov-2025 05:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Nov-2025 05:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Nov-2025 05:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Nov-2025 05:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Nov-2025 05:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Nov-2025 05:35:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Nov-2025 05:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Nov-2025 05:35:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Nov-2025 05:35:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Nov-2025 05:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Nov-2025 05:35:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Nov-2025 05:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Nov-2025 05:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Nov-2025 05:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Nov-2025 05:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Nov-2025 05:35:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Nov-2025 05:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Nov-2025 05:35:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Nov-2025 05:35:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Nov-2025 05:35:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Nov-2025 05:35:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Nov-2025 05:35:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Nov-2025 16:09:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Nov-2025 16:09:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Nov-2025 16:09:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Nov-2025 16:10:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Nov-2025 16:10:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Nov-2025 16:10:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Nov-2025 16:10:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Nov-2025 16:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Nov-2025 16:10:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Nov-2025 16:10:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Nov-2025 16:10:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Nov-2025 16:10:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Nov-2025 16:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Nov-2025 16:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Nov-2025 16:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Nov-2025 16:10:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Nov-2025 16:10:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Nov-2025 16:10:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Nov-2025 16:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Nov-2025 16:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Nov-2025 16:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Nov-2025 16:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Nov-2025 16:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Nov-2025 16:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Nov-2025 16:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Nov-2025 16:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Nov-2025 16:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Nov-2025 16:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Nov-2025 16:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Nov-2025 16:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Nov-2025 16:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Nov-2025 16:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Nov-2025 16:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Nov-2025 16:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Nov-2025 16:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Nov-2025 16:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Nov-2025 13:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Nov-2025 13:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Nov-2025 13:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Nov-2025 13:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Nov-2025 13:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Nov-2025 13:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Nov-2025 13:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Nov-2025 13:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Nov-2025 13:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Nov-2025 13:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Nov-2025 13:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Nov-2025 13:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Nov-2025 13:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Nov-2025 13:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Nov-2025 13:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Nov-2025 13:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Nov-2025 13:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Nov-2025 13:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Nov-2025 13:36:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Nov-2025 13:36:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Nov-2025 13:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Nov-2025 13:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Nov-2025 13:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Nov-2025 13:36:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Nov-2025 13:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Nov-2025 13:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Nov-2025 13:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Nov-2025 13:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Nov-2025 13:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Nov-2025 13:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Nov-2025 13:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Nov-2025 13:36:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Nov-2025 13:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Nov-2025 13:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Nov-2025 13:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Nov-2025 13:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 09:07:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 09:07:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 09:07:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 09:07:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 09:07:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 09:07:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 09:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 09:07:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 09:07:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 09:07:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 09:07:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 09:07:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 09:07:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 09:07:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 09:07:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 09:07:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 09:07:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 09:07:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 09:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 09:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 09:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 09:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 09:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 09:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 09:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 09:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 09:13:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 09:13:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 09:13:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 09:13:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 09:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 09:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 09:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 09:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 09:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 09:13:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 10:41:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 10:41:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 10:41:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 10:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 10:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 10:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 10:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 10:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 10:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 10:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 10:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 10:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 10:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 10:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 10:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 10:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 10:41:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 10:41:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:39:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:39:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Nov-2025 17:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Nov-2025 17:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Nov-2025 17:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Nov-2025 17:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Nov-2025 17:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Nov-2025 17:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Nov-2025 17:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Nov-2025 17:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Nov-2025 17:40:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:40:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:40:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:40:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:40:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:40:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Nov-2025 17:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Nov-2025 17:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Nov-2025 17:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:41:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Nov-2025 17:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:41:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Nov-2025 17:41:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:41:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Nov-2025 17:41:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:41:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:41:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:41:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Nov-2025 17:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Nov-2025 17:41:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Nov-2025 05:12:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Nov-2025 05:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Nov-2025 05:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Nov-2025 05:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Nov-2025 05:12:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Nov-2025 05:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Nov-2025 05:12:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Nov-2025 05:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Nov-2025 05:12:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Nov-2025 05:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Nov-2025 05:12:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Nov-2025 05:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Nov-2025 05:12:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Nov-2025 05:12:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Nov-2025 05:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Nov-2025 05:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Nov-2025 05:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Nov-2025 05:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Nov-2025 05:16:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Nov-2025 05:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Nov-2025 05:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Nov-2025 05:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Nov-2025 05:16:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Nov-2025 05:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Nov-2025 05:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Nov-2025 05:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Nov-2025 05:16:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Nov-2025 05:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Nov-2025 05:16:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Nov-2025 05:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Nov-2025 05:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Nov-2025 05:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Nov-2025 05:17:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Nov-2025 05:17:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Nov-2025 05:17:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Nov-2025 05:17:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Nov-2025 04:16:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [19-Nov-2025 04:16:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [19-Nov-2025 04:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [19-Nov-2025 04:16:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [19-Nov-2025 04:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [19-Nov-2025 04:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [19-Nov-2025 04:16:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [19-Nov-2025 04:16:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [19-Nov-2025 04:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [19-Nov-2025 04:16:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [19-Nov-2025 04:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [19-Nov-2025 04:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [19-Nov-2025 04:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [19-Nov-2025 04:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [19-Nov-2025 04:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [19-Nov-2025 04:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [19-Nov-2025 04:16:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [19-Nov-2025 04:16:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2025 12:02:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Nov-2025 12:02:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Nov-2025 12:02:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Nov-2025 12:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Nov-2025 12:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Nov-2025 12:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Nov-2025 12:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Nov-2025 12:02:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2025 12:02:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Nov-2025 12:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Nov-2025 12:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Nov-2025 12:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Nov-2025 12:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Nov-2025 12:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Nov-2025 12:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Nov-2025 12:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2025 12:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Nov-2025 12:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Nov-2025 12:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Nov-2025 12:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Nov-2025 12:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Nov-2025 12:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Nov-2025 12:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Nov-2025 12:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Nov-2025 12:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Nov-2025 12:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Nov-2025 12:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Nov-2025 12:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Nov-2025 12:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Nov-2025 12:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Nov-2025 12:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Nov-2025 12:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Nov-2025 12:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Nov-2025 12:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Nov-2025 12:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Nov-2025 12:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Nov-2025 20:48:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Nov-2025 20:48:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Nov-2025 20:48:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Nov-2025 20:48:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Nov-2025 20:48:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Nov-2025 20:48:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Nov-2025 20:48:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Nov-2025 20:48:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Nov-2025 20:48:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Nov-2025 20:48:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Nov-2025 20:48:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Nov-2025 20:48:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Nov-2025 20:48:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Nov-2025 20:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Nov-2025 20:48:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Nov-2025 20:48:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Nov-2025 20:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Nov-2025 20:48:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Nov-2025 20:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Nov-2025 20:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Nov-2025 20:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Nov-2025 20:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Nov-2025 20:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Nov-2025 20:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Nov-2025 20:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Nov-2025 20:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Nov-2025 20:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Nov-2025 20:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Nov-2025 20:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Nov-2025 20:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Nov-2025 20:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Nov-2025 20:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Nov-2025 20:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Nov-2025 20:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Nov-2025 20:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Nov-2025 20:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Nov-2025 05:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Nov-2025 05:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Nov-2025 05:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Nov-2025 05:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Nov-2025 05:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Nov-2025 05:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Nov-2025 05:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Nov-2025 05:43:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Nov-2025 05:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Nov-2025 05:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Nov-2025 05:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Nov-2025 05:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Nov-2025 05:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Nov-2025 05:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Nov-2025 05:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Nov-2025 05:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Nov-2025 05:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Nov-2025 05:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Nov-2025 05:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Nov-2025 05:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Nov-2025 05:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Nov-2025 05:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Nov-2025 05:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Nov-2025 05:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Nov-2025 05:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Nov-2025 05:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Nov-2025 05:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Nov-2025 05:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Nov-2025 05:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Nov-2025 05:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Nov-2025 05:49:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Nov-2025 05:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Nov-2025 05:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Nov-2025 05:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Nov-2025 05:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Nov-2025 05:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Nov-2025 20:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Nov-2025 20:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Nov-2025 20:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Nov-2025 20:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Nov-2025 20:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Nov-2025 20:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Nov-2025 20:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Nov-2025 20:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Nov-2025 20:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Nov-2025 20:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Nov-2025 20:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Nov-2025 20:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Nov-2025 20:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Nov-2025 20:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Nov-2025 20:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Nov-2025 20:55:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Nov-2025 20:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Nov-2025 20:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Nov-2025 21:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Nov-2025 21:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Nov-2025 21:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Nov-2025 21:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Nov-2025 21:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Nov-2025 21:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Nov-2025 21:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Nov-2025 21:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Nov-2025 21:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Nov-2025 21:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Nov-2025 21:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Nov-2025 21:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Nov-2025 21:01:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Nov-2025 21:01:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Nov-2025 21:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Nov-2025 21:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Nov-2025 21:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Nov-2025 21:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Nov-2025 13:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Nov-2025 13:22:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Nov-2025 13:22:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Nov-2025 13:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Nov-2025 13:22:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Nov-2025 13:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Nov-2025 13:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Nov-2025 13:22:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Nov-2025 13:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Nov-2025 13:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Nov-2025 13:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Nov-2025 13:22:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Nov-2025 13:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Nov-2025 13:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Nov-2025 13:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Nov-2025 13:22:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Nov-2025 13:22:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Nov-2025 13:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Nov-2025 09:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Nov-2025 09:39:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Nov-2025 09:39:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Nov-2025 09:39:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Nov-2025 09:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Nov-2025 09:39:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Nov-2025 09:39:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Nov-2025 09:39:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Nov-2025 09:39:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Nov-2025 09:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Nov-2025 09:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Nov-2025 09:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Nov-2025 09:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Nov-2025 09:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Nov-2025 09:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Nov-2025 09:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Nov-2025 09:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Nov-2025 09:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Nov-2025 09:47:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Nov-2025 09:47:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Nov-2025 09:47:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Nov-2025 09:47:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Nov-2025 09:47:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Nov-2025 09:47:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Nov-2025 09:47:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Nov-2025 09:47:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Nov-2025 09:47:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Nov-2025 09:47:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Nov-2025 09:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Nov-2025 09:47:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Nov-2025 09:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Nov-2025 09:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Nov-2025 09:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Nov-2025 09:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Nov-2025 09:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Nov-2025 09:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Nov-2025 13:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Nov-2025 13:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Nov-2025 13:00:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Nov-2025 13:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Nov-2025 13:00:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Nov-2025 13:00:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Nov-2025 13:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Nov-2025 13:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Nov-2025 13:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Nov-2025 13:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Nov-2025 13:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Nov-2025 13:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Nov-2025 13:00:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Nov-2025 13:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Nov-2025 13:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Nov-2025 13:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Nov-2025 13:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Nov-2025 13:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Nov-2025 13:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Nov-2025 13:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Nov-2025 13:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Nov-2025 13:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Nov-2025 13:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Nov-2025 13:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Nov-2025 13:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Nov-2025 13:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Nov-2025 13:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Nov-2025 13:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Nov-2025 13:07:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Nov-2025 13:07:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Nov-2025 13:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Nov-2025 13:07:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Nov-2025 13:07:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Nov-2025 13:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Nov-2025 13:07:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Nov-2025 13:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [26-Nov-2025 13:51:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [26-Nov-2025 13:51:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [26-Nov-2025 13:51:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [26-Nov-2025 13:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [26-Nov-2025 13:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [26-Nov-2025 13:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [26-Nov-2025 13:51:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [26-Nov-2025 13:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [26-Nov-2025 13:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [26-Nov-2025 13:51:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [26-Nov-2025 13:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [26-Nov-2025 13:51:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [26-Nov-2025 13:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [26-Nov-2025 13:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [26-Nov-2025 13:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [26-Nov-2025 13:51:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [26-Nov-2025 13:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [26-Nov-2025 13:51:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Nov-2025 11:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Nov-2025 11:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Nov-2025 11:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Nov-2025 11:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Nov-2025 11:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Nov-2025 11:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Nov-2025 11:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Nov-2025 11:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Nov-2025 11:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Nov-2025 11:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Nov-2025 11:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Nov-2025 11:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Nov-2025 11:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Nov-2025 11:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Nov-2025 11:53:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Nov-2025 11:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Nov-2025 11:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Nov-2025 11:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Nov-2025 16:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Nov-2025 16:40:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Nov-2025 16:40:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Nov-2025 16:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Nov-2025 16:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Nov-2025 16:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Nov-2025 16:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Nov-2025 16:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Nov-2025 16:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Nov-2025 16:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Nov-2025 16:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Nov-2025 16:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Nov-2025 16:40:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Nov-2025 16:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Nov-2025 16:40:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Nov-2025 16:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Nov-2025 16:40:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Nov-2025 16:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Nov-2025 16:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Nov-2025 16:40:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Nov-2025 16:40:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Nov-2025 16:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Nov-2025 16:40:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Nov-2025 16:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Nov-2025 16:40:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Nov-2025 16:40:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Nov-2025 16:40:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Nov-2025 16:40:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Nov-2025 16:40:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Nov-2025 16:41:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Nov-2025 16:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Nov-2025 16:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Nov-2025 16:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Nov-2025 16:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Nov-2025 16:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Nov-2025 16:41:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Nov-2025 16:41:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Nov-2025 16:41:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Nov-2025 16:41:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Nov-2025 16:41:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Nov-2025 16:41:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Nov-2025 16:41:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Nov-2025 16:41:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Nov-2025 16:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Nov-2025 16:41:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Nov-2025 16:41:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Nov-2025 16:41:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Nov-2025 16:41:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Nov-2025 16:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Nov-2025 16:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Nov-2025 16:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Nov-2025 16:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Nov-2025 16:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Nov-2025 16:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Nov-2025 16:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Nov-2025 16:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Nov-2025 16:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Nov-2025 16:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Nov-2025 16:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Nov-2025 16:41:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Nov-2025 16:41:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Nov-2025 16:41:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Nov-2025 16:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Nov-2025 16:41:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Nov-2025 16:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Nov-2025 16:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Nov-2025 16:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Nov-2025 16:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Nov-2025 16:42:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Nov-2025 16:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Nov-2025 16:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Nov-2025 16:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Nov-2025 22:08:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Nov-2025 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Nov-2025 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Nov-2025 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Nov-2025 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Nov-2025 22:08:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Nov-2025 22:08:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Nov-2025 22:08:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Nov-2025 22:08:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Nov-2025 22:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Nov-2025 22:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Nov-2025 22:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Nov-2025 22:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Nov-2025 22:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Nov-2025 22:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Nov-2025 22:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Nov-2025 22:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Nov-2025 22:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Nov-2025 20:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Nov-2025 20:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Nov-2025 20:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Nov-2025 20:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Nov-2025 20:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Nov-2025 20:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Nov-2025 20:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Nov-2025 20:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Nov-2025 20:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Nov-2025 20:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Nov-2025 20:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Nov-2025 20:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Nov-2025 20:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Nov-2025 20:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Nov-2025 20:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Nov-2025 20:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Nov-2025 20:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Nov-2025 20:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Nov-2025 23:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Nov-2025 23:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Nov-2025 23:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Nov-2025 23:47:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Nov-2025 23:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Nov-2025 23:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Nov-2025 23:47:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Nov-2025 23:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Nov-2025 23:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Nov-2025 23:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Nov-2025 23:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Nov-2025 23:47:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Nov-2025 23:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Nov-2025 23:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Nov-2025 23:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Nov-2025 23:47:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Nov-2025 23:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Nov-2025 23:47:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Nov-2025 23:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Nov-2025 23:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Nov-2025 23:47:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Nov-2025 23:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Nov-2025 23:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Nov-2025 23:47:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Nov-2025 23:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Nov-2025 23:47:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Nov-2025 23:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Nov-2025 23:47:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Nov-2025 23:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Nov-2025 23:47:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Nov-2025 23:47:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Nov-2025 23:47:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Nov-2025 23:47:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Nov-2025 23:47:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Nov-2025 23:47:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Nov-2025 23:47:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Dec-2025 15:05:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Dec-2025 15:05:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Dec-2025 15:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Dec-2025 15:05:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Dec-2025 15:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Dec-2025 15:05:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Dec-2025 15:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Dec-2025 15:05:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Dec-2025 15:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Dec-2025 15:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Dec-2025 15:05:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Dec-2025 15:05:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Dec-2025 15:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Dec-2025 15:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Dec-2025 15:05:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Dec-2025 15:05:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Dec-2025 15:05:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Dec-2025 15:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Dec-2025 15:09:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Dec-2025 15:09:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Dec-2025 15:09:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Dec-2025 15:09:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Dec-2025 15:09:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Dec-2025 15:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Dec-2025 15:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Dec-2025 15:09:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Dec-2025 15:09:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Dec-2025 15:09:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Dec-2025 15:09:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Dec-2025 15:09:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Dec-2025 15:09:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Dec-2025 15:09:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Dec-2025 15:09:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Dec-2025 15:09:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Dec-2025 15:09:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Dec-2025 15:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 12:25:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 12:25:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 12:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 12:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 12:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 12:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 12:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 12:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 12:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 12:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 12:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 12:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 12:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 12:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 12:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 12:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 12:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 12:25:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 12:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 12:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 12:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 12:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 12:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 12:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 12:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 12:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 12:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 12:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 12:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 12:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 12:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 12:34:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 12:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 12:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 12:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 12:34:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 12:56:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 12:56:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 12:56:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 12:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 12:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 12:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 12:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 12:56:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 12:56:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 12:56:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 12:56:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 12:56:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 12:56:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 12:56:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 14:11:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 14:11:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 14:11:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 14:11:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 14:11:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 14:11:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 14:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 14:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 14:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 14:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 14:11:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 14:11:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 14:11:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 14:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 14:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 14:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 14:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 14:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 14:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 14:11:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 14:11:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 15:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 15:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 15:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 15:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 15:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 15:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 15:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 15:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 15:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 15:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 15:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 15:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 15:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 15:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 15:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 15:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 15:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 15:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 16:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 16:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 16:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 16:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 16:13:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 16:13:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 16:13:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 16:13:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 16:13:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 16:13:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 16:13:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 16:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 16:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 16:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 16:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 16:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 16:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 16:13:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 17:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 17:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 17:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 17:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 17:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 17:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 17:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 17:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 17:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 17:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 17:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 17:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 17:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 17:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 17:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 17:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 17:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 17:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 18:07:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 18:07:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 18:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 18:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 18:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 18:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 18:07:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 18:07:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 18:07:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 18:07:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Dec-2025 18:07:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 18:07:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 18:07:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 18:07:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 18:07:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 18:07:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 18:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 18:07:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 22:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Dec-2025 22:10:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Dec-2025 22:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Dec-2025 22:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Dec-2025 22:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Dec-2025 22:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Dec-2025 22:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Dec-2025 22:10:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Dec-2025 22:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Dec-2025 22:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Dec-2025 22:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Dec-2025 22:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Dec-2025 22:10:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Dec-2025 22:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Dec-2025 22:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Dec-2025 22:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Dec-2025 22:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Dec-2025 22:10:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 00:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 00:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 00:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 00:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 00:19:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 00:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 00:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 00:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 00:19:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 00:19:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 00:19:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 00:19:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 00:19:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 00:19:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 00:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 00:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 00:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 00:19:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 01:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 01:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 01:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 01:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 01:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 01:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 01:25:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 01:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 01:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 01:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 01:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 01:25:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 01:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 01:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 01:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 01:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 01:25:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 01:25:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 14:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 14:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 14:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 14:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 14:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 14:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 14:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 14:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 14:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 14:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 14:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 14:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 14:53:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 14:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 14:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 14:53:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 14:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 14:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 14:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 14:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 14:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 14:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 14:54:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 14:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 14:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 14:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 14:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 14:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 14:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 14:54:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 14:54:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 14:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 14:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 14:54:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 14:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 14:54:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 15:50:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 15:50:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 15:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 15:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 15:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 15:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 15:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 15:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 15:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 15:50:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 15:50:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 15:50:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 15:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 15:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 15:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 15:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 15:50:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 15:50:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 16:54:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 16:54:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 16:54:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 16:54:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 16:54:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 16:54:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 16:54:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 16:54:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 16:54:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 16:54:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 16:54:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 16:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 16:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 16:54:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 16:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 16:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 16:54:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 16:54:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 18:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 18:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 18:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 18:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 18:05:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 18:05:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 18:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 18:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 18:05:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 18:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 18:05:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 18:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 18:05:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 18:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 18:05:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 18:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 18:05:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 18:05:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 19:00:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 19:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 19:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 19:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 19:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 19:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 19:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 19:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 19:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 19:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 19:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 19:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 19:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 19:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 19:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 19:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 19:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 19:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 20:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 20:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 20:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 20:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 20:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 20:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 20:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 20:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 20:13:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 20:13:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 20:13:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 20:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 20:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 20:13:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 20:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 20:13:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 20:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 20:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 21:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 21:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 21:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 21:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 21:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 21:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 21:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 21:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 21:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 21:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 21:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 21:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 21:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 21:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 21:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 21:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 21:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 21:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 21:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 21:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 21:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 21:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 21:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 21:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 21:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 21:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 21:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 21:54:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 21:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 21:54:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 21:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 21:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 21:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 21:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 21:54:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 21:54:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 22:12:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 22:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 22:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 22:12:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 22:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 22:12:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Dec-2025 22:12:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 22:12:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 22:12:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 22:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 22:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 22:12:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 22:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 22:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 22:12:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 22:12:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 22:12:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 22:12:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 22:38:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Dec-2025 22:38:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Dec-2025 22:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Dec-2025 22:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Dec-2025 22:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Dec-2025 22:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Dec-2025 22:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Dec-2025 22:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Dec-2025 22:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Dec-2025 22:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Dec-2025 22:38:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Dec-2025 22:38:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Dec-2025 22:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Dec-2025 22:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Dec-2025 22:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Dec-2025 22:38:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Dec-2025 22:38:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Dec-2025 22:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 09:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 09:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 09:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 09:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 09:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 09:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 09:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 09:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 09:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 09:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 09:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 09:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 09:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 09:07:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 09:07:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 09:07:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 09:07:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 09:07:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 10:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 10:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 10:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 10:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 10:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 10:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 10:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 10:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 10:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 10:07:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 10:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 10:07:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 10:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 10:07:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 10:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 10:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 10:07:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 10:07:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 11:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 11:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 11:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 11:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 11:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 11:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 11:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 11:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 11:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 11:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 11:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 11:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 11:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 11:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 11:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 11:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 11:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 11:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 12:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 12:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 12:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 12:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 12:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 12:36:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 12:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 12:36:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 12:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 12:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 12:36:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 12:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 12:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 12:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 12:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 12:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 12:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 12:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 14:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 14:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 14:00:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 14:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 14:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 14:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 14:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 14:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 14:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 14:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 14:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 14:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 14:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 14:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 14:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 14:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 14:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 14:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 17:47:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 17:47:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 17:47:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 17:47:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 17:47:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 17:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 17:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 17:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 17:48:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 17:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 17:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 17:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 17:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 17:48:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 17:48:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 17:48:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 17:48:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 17:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 19:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 19:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 19:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 19:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 19:15:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 19:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 19:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 19:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 19:15:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 19:15:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 19:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 19:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 19:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 19:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 19:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 19:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 19:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 19:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 20:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 20:02:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 20:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 20:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 20:02:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 20:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 20:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 20:02:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 20:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 20:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 20:02:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 20:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 20:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 20:02:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 20:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 20:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 20:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 20:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 20:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 20:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 20:03:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 20:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 20:03:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 20:03:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 20:03:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 20:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 20:03:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 20:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 20:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 20:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 20:03:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 20:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 20:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 20:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 20:03:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 20:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 20:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 20:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 20:44:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 20:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 20:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 20:44:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 20:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 20:44:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 20:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 20:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 20:44:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Dec-2025 20:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 20:44:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 20:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 20:44:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 20:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 20:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 20:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 22:49:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Dec-2025 22:49:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Dec-2025 22:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Dec-2025 22:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Dec-2025 22:49:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Dec-2025 22:49:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Dec-2025 22:49:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Dec-2025 22:49:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Dec-2025 22:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Dec-2025 22:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Dec-2025 22:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Dec-2025 22:49:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Dec-2025 22:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Dec-2025 22:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Dec-2025 22:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Dec-2025 22:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Dec-2025 22:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Dec-2025 22:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Dec-2025 02:56:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Dec-2025 02:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Dec-2025 02:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Dec-2025 02:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Dec-2025 02:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Dec-2025 02:56:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Dec-2025 02:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Dec-2025 02:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Dec-2025 02:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Dec-2025 02:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Dec-2025 02:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Dec-2025 02:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Dec-2025 02:56:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Dec-2025 02:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Dec-2025 02:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Dec-2025 02:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Dec-2025 02:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Dec-2025 02:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Dec-2025 08:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Dec-2025 08:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Dec-2025 08:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Dec-2025 08:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Dec-2025 08:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Dec-2025 08:00:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Dec-2025 08:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Dec-2025 08:00:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Dec-2025 08:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Dec-2025 08:00:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Dec-2025 08:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Dec-2025 08:00:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Dec-2025 08:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Dec-2025 08:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Dec-2025 08:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Dec-2025 08:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Dec-2025 08:00:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Dec-2025 08:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Dec-2025 09:29:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Dec-2025 09:29:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Dec-2025 09:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Dec-2025 09:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Dec-2025 09:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Dec-2025 09:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Dec-2025 09:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Dec-2025 09:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Dec-2025 09:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Dec-2025 09:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Dec-2025 09:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Dec-2025 09:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Dec-2025 09:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Dec-2025 09:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Dec-2025 09:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Dec-2025 09:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Dec-2025 09:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Dec-2025 09:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Dec-2025 22:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Dec-2025 22:17:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Dec-2025 22:17:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Dec-2025 22:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Dec-2025 22:17:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Dec-2025 22:17:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Dec-2025 22:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Dec-2025 22:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Dec-2025 22:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Dec-2025 22:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Dec-2025 22:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Dec-2025 22:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Dec-2025 22:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Dec-2025 22:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Dec-2025 22:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Dec-2025 22:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Dec-2025 22:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Dec-2025 22:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Dec-2025 22:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Dec-2025 22:22:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Dec-2025 22:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Dec-2025 22:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Dec-2025 22:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Dec-2025 22:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Dec-2025 22:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Dec-2025 22:22:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Dec-2025 22:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Dec-2025 22:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Dec-2025 22:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Dec-2025 22:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Dec-2025 22:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Dec-2025 22:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Dec-2025 22:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Dec-2025 22:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Dec-2025 22:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Dec-2025 22:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 05:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Dec-2025 05:27:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Dec-2025 05:27:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Dec-2025 05:27:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 05:27:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Dec-2025 05:27:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Dec-2025 05:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Dec-2025 05:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Dec-2025 05:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Dec-2025 05:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Dec-2025 05:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Dec-2025 05:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Dec-2025 05:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Dec-2025 05:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Dec-2025 05:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Dec-2025 05:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Dec-2025 05:28:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Dec-2025 05:28:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Dec-2025 14:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Dec-2025 14:28:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Dec-2025 14:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Dec-2025 14:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Dec-2025 14:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Dec-2025 14:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Dec-2025 14:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Dec-2025 14:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Dec-2025 14:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Dec-2025 14:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Dec-2025 14:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Dec-2025 14:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Dec-2025 14:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Dec-2025 14:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Dec-2025 14:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Dec-2025 14:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 14:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Dec-2025 14:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Dec-2025 15:07:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Dec-2025 15:07:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Dec-2025 15:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Dec-2025 15:07:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Dec-2025 15:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Dec-2025 15:07:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Dec-2025 15:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 15:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Dec-2025 15:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Dec-2025 15:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Dec-2025 15:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Dec-2025 15:07:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Dec-2025 15:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Dec-2025 15:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Dec-2025 15:07:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Dec-2025 15:07:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Dec-2025 15:07:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Dec-2025 15:07:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Dec-2025 15:35:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Dec-2025 15:35:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Dec-2025 15:35:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Dec-2025 15:35:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Dec-2025 15:35:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Dec-2025 15:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Dec-2025 15:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Dec-2025 15:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Dec-2025 15:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Dec-2025 15:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Dec-2025 15:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Dec-2025 15:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 15:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Dec-2025 15:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Dec-2025 15:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Dec-2025 15:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Dec-2025 15:35:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Dec-2025 15:35:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Dec-2025 18:48:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Dec-2025 18:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Dec-2025 18:48:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Dec-2025 18:48:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Dec-2025 18:48:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Dec-2025 18:48:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Dec-2025 18:48:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 18:48:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Dec-2025 18:48:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Dec-2025 18:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Dec-2025 18:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Dec-2025 18:48:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Dec-2025 18:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Dec-2025 18:48:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Dec-2025 18:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Dec-2025 18:48:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Dec-2025 18:48:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Dec-2025 18:48:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Dec-2025 19:13:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Dec-2025 19:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Dec-2025 19:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Dec-2025 19:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Dec-2025 19:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 19:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Dec-2025 19:13:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Dec-2025 19:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Dec-2025 19:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Dec-2025 19:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Dec-2025 19:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Dec-2025 19:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Dec-2025 19:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Dec-2025 19:13:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Dec-2025 19:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Dec-2025 19:13:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Dec-2025 19:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Dec-2025 19:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Dec-2025 19:16:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Dec-2025 19:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Dec-2025 19:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Dec-2025 19:16:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Dec-2025 19:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Dec-2025 19:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Dec-2025 19:16:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Dec-2025 19:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Dec-2025 19:16:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Dec-2025 19:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Dec-2025 19:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Dec-2025 19:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Dec-2025 19:16:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Dec-2025 19:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Dec-2025 19:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Dec-2025 19:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Dec-2025 19:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Dec-2025 19:16:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Dec-2025 02:59:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Dec-2025 02:59:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Dec-2025 02:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Dec-2025 02:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Dec-2025 02:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Dec-2025 02:59:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Dec-2025 02:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Dec-2025 02:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Dec-2025 02:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Dec-2025 02:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Dec-2025 02:59:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Dec-2025 02:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Dec-2025 02:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Dec-2025 02:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Dec-2025 02:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Dec-2025 02:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Dec-2025 02:59:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Dec-2025 02:59:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Dec-2025 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Dec-2025 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Dec-2025 19:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Dec-2025 19:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Dec-2025 19:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Dec-2025 19:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Dec-2025 19:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Dec-2025 19:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Dec-2025 19:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Dec-2025 19:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Dec-2025 19:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Dec-2025 19:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Dec-2025 19:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Dec-2025 19:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Dec-2025 19:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Dec-2025 19:02:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Dec-2025 19:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Dec-2025 19:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Dec-2025 20:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Dec-2025 20:24:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Dec-2025 20:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Dec-2025 20:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Dec-2025 20:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Dec-2025 20:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Dec-2025 20:24:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Dec-2025 20:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Dec-2025 20:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Dec-2025 20:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Dec-2025 20:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Dec-2025 20:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Dec-2025 20:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Dec-2025 20:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Dec-2025 20:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Dec-2025 20:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Dec-2025 20:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Dec-2025 20:24:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Dec-2025 20:42:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Dec-2025 20:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Dec-2025 20:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Dec-2025 20:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Dec-2025 20:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Dec-2025 20:42:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Dec-2025 20:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Dec-2025 20:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Dec-2025 20:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Dec-2025 20:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Dec-2025 20:42:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Dec-2025 20:42:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Dec-2025 20:42:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Dec-2025 20:42:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Dec-2025 20:42:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Dec-2025 20:42:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Dec-2025 20:42:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Dec-2025 20:42:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Dec-2025 23:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Dec-2025 23:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Dec-2025 23:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Dec-2025 23:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Dec-2025 23:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [07-Dec-2025 23:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Dec-2025 23:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Dec-2025 23:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Dec-2025 23:20:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Dec-2025 23:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Dec-2025 23:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Dec-2025 23:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Dec-2025 23:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Dec-2025 23:20:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Dec-2025 23:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Dec-2025 23:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Dec-2025 23:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Dec-2025 23:20:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Dec-2025 23:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [07-Dec-2025 23:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [07-Dec-2025 23:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [07-Dec-2025 23:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [07-Dec-2025 23:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [07-Dec-2025 23:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [07-Dec-2025 23:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [07-Dec-2025 23:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [07-Dec-2025 23:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [07-Dec-2025 23:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [07-Dec-2025 23:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [07-Dec-2025 23:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [07-Dec-2025 23:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [07-Dec-2025 23:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [07-Dec-2025 23:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [07-Dec-2025 23:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [07-Dec-2025 23:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [07-Dec-2025 23:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 00:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 00:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 00:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 00:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 00:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 00:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 00:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 00:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 00:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 00:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 00:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 00:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 00:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 00:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 00:50:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 00:50:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 00:50:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 00:50:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 03:51:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 03:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 03:51:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 03:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 03:51:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 03:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 03:51:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 03:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 03:51:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 03:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 03:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 03:51:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 03:51:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 03:51:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 03:51:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 03:51:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 03:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 03:51:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 04:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 04:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 04:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 04:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 04:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 04:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 04:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 04:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 04:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 04:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 04:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 04:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 04:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 04:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 04:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 04:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 04:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 04:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 05:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 05:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 05:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 05:18:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 05:18:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 05:18:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 05:18:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 05:18:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 05:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 05:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 05:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 05:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 05:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 05:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 05:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 05:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 05:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 05:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 05:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 05:18:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 05:18:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 05:18:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 05:18:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 05:18:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 05:18:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 05:18:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 05:18:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 06:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 06:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 06:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 06:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 06:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 06:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 06:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 06:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 06:13:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 06:13:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 06:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 06:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 06:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 06:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 06:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 06:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 06:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 06:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 12:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 12:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 12:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 12:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 12:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 12:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 12:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 12:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 12:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 12:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 12:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 12:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 12:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 12:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 12:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 12:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 12:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 12:54:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 14:41:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 14:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 14:41:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 14:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 14:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 14:41:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 14:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 14:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 14:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 14:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 14:41:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 14:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 14:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 14:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 14:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 14:41:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 14:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 14:41:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 14:42:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 14:42:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 14:42:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 14:42:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 14:42:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 14:42:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 14:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 14:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 14:42:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 14:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 14:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 14:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 14:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 14:42:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 14:42:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 14:42:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 14:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 14:42:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Dec-2025 22:13:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Dec-2025 22:13:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Dec-2025 22:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Dec-2025 22:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Dec-2025 22:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Dec-2025 22:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Dec-2025 22:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Dec-2025 22:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Dec-2025 22:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Dec-2025 22:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Dec-2025 22:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Dec-2025 22:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Dec-2025 22:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Dec-2025 22:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Dec-2025 22:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Dec-2025 22:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Dec-2025 22:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Dec-2025 22:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 01:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 01:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 01:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 01:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 01:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 01:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 01:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 01:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 01:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 01:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 01:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 01:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 01:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 01:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 01:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 01:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 01:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 01:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 02:18:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 02:18:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 02:18:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 02:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 02:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 02:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 02:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 02:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 02:18:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 02:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 02:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 02:18:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 02:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 02:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 02:18:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 02:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 02:18:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 02:18:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 02:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 02:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 02:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 02:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 02:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 02:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 02:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 02:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 02:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 02:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 02:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 02:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 02:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 02:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 02:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 02:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 02:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 02:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 04:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 04:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 04:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 04:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 04:09:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 04:09:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 04:09:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 04:09:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 04:09:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 04:09:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 04:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 04:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 04:09:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 04:09:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 04:09:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 04:09:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 04:09:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 04:09:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 04:13:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 04:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 04:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 04:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 04:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 04:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 04:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 04:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 04:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 04:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 04:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 04:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 04:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 04:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 04:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 04:13:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 04:13:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 04:13:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 13:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 13:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 13:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 13:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 13:49:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 13:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 13:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 13:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 13:49:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 13:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 13:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 13:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 13:49:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 13:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 13:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 13:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 13:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 13:49:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 14:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 14:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 14:23:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 14:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 14:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 14:23:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 14:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 14:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 14:23:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 14:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 14:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 14:23:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 14:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 14:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 14:23:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 14:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 14:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 14:23:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 16:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 16:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 16:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 16:53:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 16:53:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 16:53:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 16:53:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 16:53:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Dec-2025 16:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 16:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 16:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 16:53:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 16:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 16:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 16:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 16:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 16:53:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 16:53:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 18:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Dec-2025 18:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Dec-2025 18:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Dec-2025 18:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Dec-2025 18:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Dec-2025 18:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Dec-2025 18:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Dec-2025 18:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Dec-2025 18:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Dec-2025 18:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Dec-2025 18:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Dec-2025 18:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Dec-2025 18:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Dec-2025 18:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Dec-2025 18:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Dec-2025 18:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Dec-2025 18:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Dec-2025 18:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Dec-2025 02:33:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Dec-2025 02:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Dec-2025 02:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Dec-2025 02:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Dec-2025 02:33:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Dec-2025 02:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Dec-2025 02:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Dec-2025 02:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Dec-2025 02:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Dec-2025 02:33:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Dec-2025 02:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Dec-2025 02:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Dec-2025 02:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Dec-2025 02:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Dec-2025 02:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Dec-2025 02:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Dec-2025 02:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Dec-2025 02:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Dec-2025 07:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Dec-2025 07:26:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Dec-2025 07:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Dec-2025 07:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Dec-2025 07:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Dec-2025 07:26:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Dec-2025 07:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Dec-2025 07:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Dec-2025 07:26:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Dec-2025 07:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Dec-2025 07:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Dec-2025 07:26:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Dec-2025 07:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Dec-2025 07:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Dec-2025 07:26:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Dec-2025 07:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Dec-2025 07:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Dec-2025 07:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Dec-2025 12:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Dec-2025 12:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Dec-2025 12:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Dec-2025 12:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Dec-2025 12:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Dec-2025 12:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Dec-2025 12:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Dec-2025 12:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Dec-2025 12:21:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Dec-2025 12:21:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Dec-2025 12:21:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Dec-2025 12:21:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Dec-2025 12:21:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Dec-2025 12:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Dec-2025 12:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Dec-2025 12:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Dec-2025 12:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Dec-2025 12:21:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Dec-2025 17:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Dec-2025 17:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Dec-2025 17:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Dec-2025 17:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Dec-2025 17:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Dec-2025 17:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Dec-2025 17:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Dec-2025 17:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Dec-2025 17:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Dec-2025 17:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Dec-2025 17:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Dec-2025 17:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Dec-2025 17:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Dec-2025 17:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Dec-2025 17:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Dec-2025 17:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Dec-2025 17:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Dec-2025 17:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Dec-2025 06:15:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Dec-2025 06:15:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Dec-2025 16:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Dec-2025 16:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Dec-2025 16:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Dec-2025 16:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Dec-2025 16:52:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:52:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:52:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Dec-2025 16:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:53:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:53:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Dec-2025 16:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:53:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Dec-2025 16:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:53:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:53:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Dec-2025 16:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Dec-2025 16:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Dec-2025 16:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Dec-2025 16:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Dec-2025 16:53:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Dec-2025 16:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Dec-2025 16:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Dec-2025 16:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Dec-2025 16:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Dec-2025 16:53:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 00:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 00:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 00:30:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 00:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 00:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 00:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 00:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 00:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 00:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 00:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 00:30:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 00:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 00:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 00:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 00:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 00:30:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 00:30:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 00:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 00:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 00:30:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 00:30:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 00:30:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 00:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 00:30:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 00:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Dec-2025 00:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Dec-2025 00:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Dec-2025 00:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Dec-2025 00:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 00:30:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 00:30:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 00:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 00:30:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 00:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 00:30:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 00:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 00:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 00:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 00:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 00:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 00:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 00:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 00:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 00:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 00:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 00:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 00:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 00:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 00:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 00:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 00:31:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 00:31:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 00:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 00:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 00:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 00:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 00:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 00:31:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 00:31:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 00:31:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 00:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 00:31:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 00:31:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 00:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 00:31:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 00:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 00:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 00:31:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 00:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 00:31:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 00:31:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 00:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 12:55:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 12:55:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 12:55:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 12:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [13-Dec-2025 12:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 12:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 12:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 12:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [13-Dec-2025 12:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 12:55:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 12:55:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 12:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [13-Dec-2025 12:55:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 12:55:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 12:55:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 12:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [13-Dec-2025 12:55:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 12:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 12:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 12:55:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [13-Dec-2025 12:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 12:55:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 12:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 12:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [13-Dec-2025 12:55:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 12:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 12:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 12:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [13-Dec-2025 12:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 12:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 12:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 12:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [13-Dec-2025 12:55:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 12:56:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 12:56:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 12:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [13-Dec-2025 12:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 12:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 12:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 12:56:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [13-Dec-2025 12:56:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 12:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 12:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 12:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [13-Dec-2025 12:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 12:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 12:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 12:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [13-Dec-2025 12:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 12:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 12:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 12:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [13-Dec-2025 12:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 12:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 12:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 12:56:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [13-Dec-2025 12:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 12:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 12:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 12:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [13-Dec-2025 12:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 12:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 12:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 12:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [13-Dec-2025 12:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 12:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 12:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 12:56:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [13-Dec-2025 12:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Dec-2025 12:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Dec-2025 12:56:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [13-Dec-2025 12:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 05:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 05:21:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 05:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 05:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 05:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 05:21:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 05:21:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 05:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 05:21:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 05:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 05:21:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 05:21:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 05:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 05:21:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 05:21:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 05:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 05:21:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 05:22:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 05:22:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 05:22:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 05:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 05:22:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 05:22:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 05:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 05:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 05:22:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 05:22:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 05:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 05:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 05:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 05:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 05:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 05:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 05:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 05:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 05:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 05:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 05:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 05:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 05:22:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 05:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 05:22:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 05:22:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 05:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 05:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 05:22:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 05:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 05:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 05:22:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 05:22:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 05:22:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 05:22:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 05:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 05:22:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 05:22:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 05:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 05:22:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 05:22:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 05:22:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 05:22:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 05:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 05:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 05:22:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 05:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 05:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 05:22:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 05:22:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 05:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 05:22:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 05:22:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 05:22:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 05:23:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:13:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:14:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:14:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:14:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:14:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:14:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:14:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:14:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:14:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:14:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:14:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:14:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:14:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:14:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 16:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 16:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 16:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 16:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 16:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 16:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 16:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 16:15:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 16:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 16:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 16:15:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 16:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 16:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 16:15:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 16:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 16:15:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 16:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 16:15:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 23:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 23:48:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 23:48:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 23:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 23:48:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 23:49:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 23:49:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 23:49:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 23:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 23:49:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 23:49:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 23:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 23:49:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 23:49:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 23:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 23:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 23:49:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 23:49:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Dec-2025 23:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Dec-2025 23:55:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Dec-2025 23:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Dec-2025 23:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Dec-2025 23:55:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Dec-2025 23:55:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Dec-2025 23:55:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Dec-2025 23:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Dec-2025 23:55:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Dec-2025 23:55:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Dec-2025 23:55:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Dec-2025 23:55:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Dec-2025 23:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Dec-2025 23:55:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Dec-2025 23:55:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Dec-2025 23:55:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Dec-2025 23:55:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Dec-2025 23:55:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Dec-2025 11:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Dec-2025 11:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Dec-2025 11:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Dec-2025 11:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Dec-2025 11:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Dec-2025 11:50:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [16-Dec-2025 11:50:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Dec-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [16-Dec-2025 11:50:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [16-Dec-2025 11:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [16-Dec-2025 11:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [16-Dec-2025 11:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [16-Dec-2025 11:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Dec-2025 06:30:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [17-Dec-2025 06:30:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [17-Dec-2025 06:30:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [17-Dec-2025 06:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [17-Dec-2025 06:30:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [17-Dec-2025 06:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [17-Dec-2025 06:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [17-Dec-2025 06:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [17-Dec-2025 06:30:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Dec-2025 06:30:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [17-Dec-2025 06:30:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Dec-2025 06:30:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [17-Dec-2025 06:30:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Dec-2025 06:30:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [17-Dec-2025 06:30:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Dec-2025 06:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [17-Dec-2025 06:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [17-Dec-2025 06:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Dec-2025 00:05:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Dec-2025 00:05:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Dec-2025 00:05:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Dec-2025 00:05:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Dec-2025 00:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Dec-2025 00:05:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Dec-2025 00:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Dec-2025 00:05:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Dec-2025 00:05:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Dec-2025 00:05:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Dec-2025 00:05:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Dec-2025 00:05:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Dec-2025 00:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Dec-2025 00:05:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Dec-2025 00:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Dec-2025 00:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Dec-2025 00:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Dec-2025 00:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [18-Dec-2025 18:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [18-Dec-2025 18:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [18-Dec-2025 18:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [18-Dec-2025 18:13:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [18-Dec-2025 18:13:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [18-Dec-2025 18:13:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [18-Dec-2025 18:13:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [18-Dec-2025 18:13:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [18-Dec-2025 18:13:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [18-Dec-2025 18:13:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [18-Dec-2025 18:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [18-Dec-2025 18:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [18-Dec-2025 18:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [18-Dec-2025 18:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [18-Dec-2025 18:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [18-Dec-2025 18:13:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [18-Dec-2025 18:13:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [18-Dec-2025 18:13:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Dec-2025 07:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Dec-2025 07:59:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Dec-2025 07:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Dec-2025 07:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Dec-2025 07:59:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Dec-2025 07:59:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Dec-2025 07:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Dec-2025 07:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Dec-2025 07:59:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Dec-2025 07:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Dec-2025 07:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Dec-2025 07:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Dec-2025 07:59:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Dec-2025 07:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Dec-2025 07:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Dec-2025 07:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Dec-2025 07:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Dec-2025 07:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Dec-2025 08:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Dec-2025 08:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Dec-2025 08:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Dec-2025 08:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Dec-2025 08:04:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Dec-2025 08:04:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Dec-2025 08:04:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Dec-2025 08:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Dec-2025 08:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Dec-2025 08:04:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Dec-2025 08:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Dec-2025 08:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Dec-2025 08:04:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Dec-2025 08:04:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Dec-2025 08:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Dec-2025 08:04:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Dec-2025 08:04:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Dec-2025 08:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Dec-2025 11:25:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Dec-2025 11:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Dec-2025 11:25:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Dec-2025 11:25:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Dec-2025 11:25:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Dec-2025 11:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Dec-2025 11:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Dec-2025 11:26:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Dec-2025 11:26:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Dec-2025 11:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Dec-2025 11:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Dec-2025 11:26:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Dec-2025 11:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Dec-2025 11:26:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Dec-2025 11:26:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Dec-2025 11:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Dec-2025 11:26:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Dec-2025 11:26:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [20-Dec-2025 11:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [20-Dec-2025 11:31:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [20-Dec-2025 11:31:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [20-Dec-2025 11:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [20-Dec-2025 11:31:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [20-Dec-2025 11:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [20-Dec-2025 11:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [20-Dec-2025 11:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [20-Dec-2025 11:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [20-Dec-2025 11:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [20-Dec-2025 11:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [20-Dec-2025 11:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [20-Dec-2025 11:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [20-Dec-2025 11:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [20-Dec-2025 11:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [20-Dec-2025 11:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [20-Dec-2025 11:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [20-Dec-2025 11:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Dec-2025 10:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Dec-2025 10:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Dec-2025 10:55:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Dec-2025 10:55:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Dec-2025 10:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Dec-2025 10:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Dec-2025 10:55:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Dec-2025 10:56:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Dec-2025 10:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Dec-2025 10:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Dec-2025 10:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Dec-2025 10:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Dec-2025 10:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Dec-2025 10:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Dec-2025 10:56:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Dec-2025 10:56:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Dec-2025 10:56:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Dec-2025 10:56:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [21-Dec-2025 22:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [21-Dec-2025 22:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [21-Dec-2025 22:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [21-Dec-2025 22:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [21-Dec-2025 22:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [21-Dec-2025 22:38:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [21-Dec-2025 22:38:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [21-Dec-2025 22:38:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [21-Dec-2025 22:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [21-Dec-2025 22:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [21-Dec-2025 22:39:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [21-Dec-2025 22:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [21-Dec-2025 22:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [21-Dec-2025 22:39:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [21-Dec-2025 22:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [21-Dec-2025 22:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [21-Dec-2025 22:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [21-Dec-2025 22:39:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 03:29:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 03:29:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 03:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 03:29:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 03:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 03:29:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 03:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 03:29:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 03:29:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 03:29:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 03:29:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 03:29:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 03:29:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 03:29:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 03:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 03:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 03:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 03:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 03:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 03:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 03:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 03:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 03:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 03:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 03:30:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 03:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 03:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 03:30:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 03:30:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 03:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 03:30:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 03:30:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 03:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 03:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 03:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 03:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 03:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 03:30:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 03:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 03:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 03:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 03:30:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 03:30:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 03:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 03:30:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 03:30:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 03:30:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 03:30:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 03:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 03:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 03:30:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 03:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 03:30:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 03:30:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 03:30:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 03:30:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 03:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 03:30:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 03:30:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 03:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 03:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 03:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 03:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 03:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 03:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 03:31:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 03:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 03:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 03:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 03:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 03:31:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 03:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 09:40:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 09:40:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 09:40:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 09:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 09:40:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 09:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 09:40:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 09:40:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 09:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 09:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 09:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 09:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 09:40:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 09:40:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 09:40:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 09:40:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 09:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 09:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 09:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 09:46:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 09:46:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 09:46:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 09:46:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 09:46:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 09:46:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 09:46:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 09:46:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 09:46:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 09:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 09:46:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 09:46:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 09:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 09:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 09:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 09:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 09:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 16:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 16:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 16:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 16:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 16:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 16:03:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 16:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 16:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 16:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 16:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 16:03:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 16:03:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 16:03:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 16:03:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 16:03:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 16:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 16:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 16:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 16:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 16:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 16:03:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 16:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 16:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 16:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 16:03:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 16:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 16:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 16:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 16:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 16:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 16:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 16:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 16:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 16:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 16:03:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 16:03:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 16:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 16:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 16:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 16:13:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 16:13:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 16:13:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 16:13:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 16:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 16:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 16:13:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 16:13:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 16:13:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 16:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 16:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 16:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 16:13:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 16:13:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 16:13:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 16:19:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 16:19:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 16:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 16:19:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 16:19:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 16:19:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 16:19:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 16:19:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 16:19:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 16:19:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 16:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 16:19:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 16:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 16:19:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 16:19:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 16:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 16:19:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 16:19:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [22-Dec-2025 18:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [22-Dec-2025 18:40:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [22-Dec-2025 18:40:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [22-Dec-2025 18:40:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [22-Dec-2025 18:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [22-Dec-2025 18:40:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [22-Dec-2025 18:40:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [22-Dec-2025 18:40:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [22-Dec-2025 18:40:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [22-Dec-2025 18:40:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [22-Dec-2025 18:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [22-Dec-2025 18:40:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [22-Dec-2025 18:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [22-Dec-2025 18:40:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [22-Dec-2025 18:40:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [22-Dec-2025 18:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [22-Dec-2025 18:40:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [22-Dec-2025 18:40:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Dec-2025 10:53:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Dec-2025 10:53:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Dec-2025 10:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Dec-2025 10:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Dec-2025 10:53:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Dec-2025 10:53:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Dec-2025 10:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Dec-2025 10:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Dec-2025 10:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Dec-2025 10:53:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Dec-2025 10:53:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Dec-2025 10:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Dec-2025 10:53:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Dec-2025 10:53:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Dec-2025 10:53:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Dec-2025 10:53:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Dec-2025 10:53:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Dec-2025 10:53:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Dec-2025 10:59:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Dec-2025 10:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Dec-2025 10:59:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Dec-2025 10:59:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Dec-2025 10:59:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Dec-2025 10:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Dec-2025 10:59:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Dec-2025 10:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Dec-2025 10:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Dec-2025 10:59:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Dec-2025 10:59:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Dec-2025 10:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Dec-2025 10:59:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Dec-2025 10:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Dec-2025 10:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Dec-2025 10:59:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Dec-2025 10:59:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Dec-2025 10:59:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Dec-2025 18:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Dec-2025 18:26:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Dec-2025 18:26:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Dec-2025 18:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Dec-2025 18:26:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Dec-2025 18:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Dec-2025 18:26:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Dec-2025 18:26:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Dec-2025 18:26:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Dec-2025 18:26:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Dec-2025 18:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Dec-2025 18:26:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Dec-2025 18:26:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Dec-2025 18:26:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Dec-2025 18:26:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Dec-2025 18:26:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Dec-2025 18:26:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Dec-2025 18:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [23-Dec-2025 18:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [23-Dec-2025 18:34:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [23-Dec-2025 18:34:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [23-Dec-2025 18:35:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [23-Dec-2025 18:35:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [23-Dec-2025 18:35:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [23-Dec-2025 18:35:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [23-Dec-2025 18:35:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [23-Dec-2025 18:35:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [23-Dec-2025 18:35:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [23-Dec-2025 18:35:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [23-Dec-2025 18:35:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [23-Dec-2025 18:35:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [23-Dec-2025 18:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [23-Dec-2025 18:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [23-Dec-2025 18:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [23-Dec-2025 18:35:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [23-Dec-2025 18:35:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 03:09:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 03:09:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 03:09:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 03:09:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 03:09:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 03:09:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 03:09:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 03:09:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 03:09:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 03:09:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 03:09:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 03:09:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 03:09:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 03:09:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 03:09:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 03:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 03:09:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 03:09:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 03:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 03:15:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 03:15:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 03:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 03:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 03:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 03:15:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 03:15:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 03:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 03:15:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 03:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 03:15:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 03:15:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 03:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 03:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 03:15:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 03:15:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 03:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 07:08:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 07:08:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 07:08:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 07:08:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 07:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 07:08:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 07:08:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 07:08:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 07:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 07:08:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 07:08:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 07:08:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 07:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 07:08:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 07:08:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 07:08:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 07:08:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 07:08:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 07:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 07:14:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 07:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 07:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 07:14:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 07:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 07:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 07:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 07:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 07:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 07:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 07:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 07:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 07:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 07:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 07:14:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 07:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 07:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 09:44:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 09:44:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 09:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 09:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 09:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 09:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 09:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 09:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 09:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 09:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 09:44:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 09:44:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 09:44:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 09:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 09:44:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 09:44:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 09:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 09:44:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 09:50:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 09:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 09:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 09:50:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 09:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 09:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 09:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 09:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 09:50:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 09:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 09:50:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 09:50:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 09:50:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 09:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 09:50:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 09:50:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 09:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 09:50:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 11:55:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 11:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 11:55:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 11:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 11:55:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 11:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 11:55:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 11:56:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 11:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 11:56:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 11:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 11:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 11:56:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 11:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 11:56:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 11:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 11:56:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 11:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 14:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 14:11:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 14:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 14:11:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 14:11:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 14:11:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 14:11:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 14:11:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 14:11:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 14:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 14:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 14:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 14:11:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 14:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 14:11:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 14:11:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 14:11:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 14:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 14:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 14:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 14:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 14:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 14:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 14:17:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 14:17:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 14:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 14:18:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 14:18:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 14:18:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 14:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 14:18:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 14:18:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 14:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 14:18:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 14:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 14:18:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 16:46:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 16:46:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 16:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 16:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 16:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 16:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 16:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 16:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 16:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 16:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 16:46:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 16:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 16:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 16:46:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 16:46:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 16:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 16:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 16:46:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 20:23:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 20:23:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 20:23:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 20:23:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 20:24:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 20:24:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 20:24:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 20:24:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 20:24:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 20:24:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 20:24:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 20:24:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 20:24:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 20:24:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 20:24:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 20:24:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 20:24:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 20:24:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [24-Dec-2025 20:29:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [24-Dec-2025 20:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [24-Dec-2025 20:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [24-Dec-2025 20:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [24-Dec-2025 20:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [24-Dec-2025 20:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [24-Dec-2025 20:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [24-Dec-2025 20:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [24-Dec-2025 20:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [24-Dec-2025 20:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [24-Dec-2025 20:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [24-Dec-2025 20:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [24-Dec-2025 20:30:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [24-Dec-2025 20:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [24-Dec-2025 20:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [24-Dec-2025 20:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [24-Dec-2025 20:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [24-Dec-2025 20:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Dec-2025 08:33:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Dec-2025 08:33:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Dec-2025 08:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Dec-2025 08:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Dec-2025 08:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Dec-2025 08:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Dec-2025 08:33:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Dec-2025 08:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Dec-2025 08:33:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Dec-2025 08:33:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Dec-2025 08:33:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Dec-2025 08:33:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Dec-2025 08:33:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Dec-2025 08:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Dec-2025 08:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Dec-2025 08:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Dec-2025 08:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Dec-2025 08:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Dec-2025 08:39:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Dec-2025 08:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Dec-2025 08:39:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Dec-2025 08:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Dec-2025 08:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Dec-2025 08:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Dec-2025 08:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Dec-2025 08:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Dec-2025 08:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Dec-2025 08:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Dec-2025 08:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Dec-2025 08:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Dec-2025 08:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Dec-2025 08:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Dec-2025 08:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Dec-2025 08:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Dec-2025 08:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Dec-2025 08:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [25-Dec-2025 20:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [25-Dec-2025 20:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [25-Dec-2025 20:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [25-Dec-2025 20:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [25-Dec-2025 20:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [25-Dec-2025 20:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [25-Dec-2025 20:13:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [25-Dec-2025 20:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [25-Dec-2025 20:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [25-Dec-2025 20:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [25-Dec-2025 20:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [25-Dec-2025 20:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [25-Dec-2025 20:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [25-Dec-2025 20:13:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [25-Dec-2025 20:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [25-Dec-2025 20:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [25-Dec-2025 20:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [25-Dec-2025 20:13:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 05:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 05:30:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 05:30:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 05:30:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 05:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 05:30:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 05:30:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 05:30:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 05:30:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 05:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 05:30:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 05:30:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 05:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 05:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 05:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 05:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 05:30:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 05:30:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 05:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 05:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 05:36:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 05:36:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 05:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 05:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 05:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 05:36:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 05:36:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 05:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 05:36:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 05:36:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 05:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 05:36:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 05:36:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 05:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 05:36:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 05:36:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 08:27:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 08:27:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 08:27:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 08:27:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 08:27:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 08:27:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 08:27:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 08:27:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 08:27:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 08:27:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 08:27:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 08:27:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 08:27:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 08:27:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 08:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 08:27:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 08:27:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 08:27:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 08:33:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 08:33:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 08:33:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 08:33:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 08:33:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 08:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 08:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 08:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 08:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 08:33:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 08:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 08:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 08:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 08:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 08:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 08:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 08:33:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 08:33:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 09:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 09:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 09:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 09:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 09:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 09:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 09:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 09:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 09:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 09:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 09:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 09:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 09:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 09:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 09:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 09:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 09:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 09:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 13:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 13:43:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 13:43:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 13:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 13:43:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 13:43:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 13:43:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 13:43:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 13:43:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 13:43:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 13:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 13:43:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 13:43:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 13:43:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 13:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 13:43:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 13:43:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 13:43:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 13:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 13:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 13:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 13:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 13:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 13:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 13:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 13:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 13:49:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 13:49:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 13:49:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 13:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 13:49:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 13:49:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 13:49:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 13:49:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 13:49:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 13:49:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [27-Dec-2025 17:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [27-Dec-2025 17:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [27-Dec-2025 17:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [27-Dec-2025 17:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [27-Dec-2025 17:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [27-Dec-2025 17:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [27-Dec-2025 17:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [27-Dec-2025 17:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [27-Dec-2025 17:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [27-Dec-2025 17:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [27-Dec-2025 17:20:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [27-Dec-2025 17:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [27-Dec-2025 17:20:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [27-Dec-2025 17:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [27-Dec-2025 17:20:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [27-Dec-2025 17:20:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [27-Dec-2025 17:20:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [27-Dec-2025 17:20:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 02:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 02:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 02:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 02:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 02:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 02:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 02:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 02:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 02:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 02:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 02:01:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 02:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 02:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 02:01:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 02:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 02:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 02:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 02:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 11:41:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 11:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 11:41:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 11:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 11:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 11:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 11:42:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 11:42:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 11:42:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 11:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 11:42:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 11:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 11:42:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 11:42:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 11:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 11:42:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 11:42:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 11:42:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 11:47:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 11:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 11:48:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 11:48:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 11:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 11:48:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 11:48:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 11:48:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 11:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 11:48:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 11:48:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 11:48:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 11:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 11:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 11:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 11:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 11:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 11:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 17:27:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 17:27:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 17:27:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 17:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 17:27:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 17:27:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 17:27:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 17:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 17:27:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 17:27:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 17:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 17:27:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 17:27:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 17:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 17:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 17:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 17:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 17:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 17:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 17:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 17:33:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 17:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 17:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 17:33:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 17:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 17:33:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 17:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 17:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 17:33:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 17:33:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 17:33:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 17:33:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 17:33:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 17:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 17:33:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 17:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 20:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 20:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 20:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 20:01:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 20:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 20:01:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 20:01:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 20:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 20:01:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 20:01:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 20:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 20:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 20:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 20:02:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 20:02:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 20:02:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 20:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 20:02:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 20:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 20:05:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 20:05:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 20:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 20:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 20:05:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 20:05:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 20:05:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 20:05:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 20:05:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 20:05:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 20:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 20:05:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 20:05:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 20:05:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 20:05:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 20:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 20:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 20:08:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 20:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 20:08:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 20:08:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 20:08:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 20:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 20:08:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 20:08:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 20:08:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 20:08:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 20:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 20:08:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 20:08:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 20:08:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 20:08:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 20:08:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 20:08:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 20:08:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [28-Dec-2025 20:11:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [28-Dec-2025 20:11:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [28-Dec-2025 20:11:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [28-Dec-2025 20:11:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [28-Dec-2025 20:11:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [28-Dec-2025 20:11:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [28-Dec-2025 20:11:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [28-Dec-2025 20:11:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [28-Dec-2025 20:11:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [28-Dec-2025 20:11:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [28-Dec-2025 20:11:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [28-Dec-2025 20:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [28-Dec-2025 20:11:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [28-Dec-2025 20:11:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [28-Dec-2025 20:11:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [28-Dec-2025 20:11:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [28-Dec-2025 20:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [28-Dec-2025 20:11:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Dec-2025 10:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Dec-2025 10:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Dec-2025 10:13:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Dec-2025 10:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Dec-2025 10:13:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Dec-2025 10:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Dec-2025 10:13:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Dec-2025 10:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Dec-2025 10:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Dec-2025 10:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Dec-2025 10:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Dec-2025 10:13:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Dec-2025 10:13:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Dec-2025 10:13:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Dec-2025 10:13:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Dec-2025 10:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Dec-2025 10:13:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Dec-2025 10:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [29-Dec-2025 10:18:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [29-Dec-2025 10:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [29-Dec-2025 10:18:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [29-Dec-2025 10:18:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [29-Dec-2025 10:18:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [29-Dec-2025 10:18:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [29-Dec-2025 10:18:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [29-Dec-2025 10:18:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [29-Dec-2025 10:18:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [29-Dec-2025 10:18:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [29-Dec-2025 10:18:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [29-Dec-2025 10:18:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [29-Dec-2025 10:18:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [29-Dec-2025 10:18:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [29-Dec-2025 10:18:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [29-Dec-2025 10:18:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [29-Dec-2025 10:18:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [29-Dec-2025 10:18:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Dec-2025 15:14:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Dec-2025 15:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Dec-2025 15:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Dec-2025 15:14:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Dec-2025 15:14:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Dec-2025 15:14:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Dec-2025 15:14:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Dec-2025 15:14:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Dec-2025 15:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Dec-2025 15:14:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Dec-2025 15:14:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Dec-2025 15:14:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Dec-2025 15:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Dec-2025 15:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Dec-2025 15:14:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Dec-2025 15:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Dec-2025 15:15:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Dec-2025 15:15:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Dec-2025 15:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Dec-2025 15:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Dec-2025 15:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Dec-2025 15:21:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Dec-2025 15:21:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Dec-2025 15:21:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Dec-2025 15:21:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Dec-2025 15:21:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Dec-2025 15:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Dec-2025 15:21:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Dec-2025 15:21:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Dec-2025 15:21:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Dec-2025 15:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Dec-2025 15:21:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Dec-2025 15:21:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Dec-2025 15:21:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Dec-2025 15:21:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Dec-2025 15:21:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Dec-2025 22:09:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Dec-2025 22:09:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Dec-2025 22:09:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Dec-2025 22:09:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Dec-2025 22:09:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Dec-2025 22:09:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Dec-2025 22:09:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Dec-2025 22:09:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Dec-2025 22:09:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Dec-2025 22:09:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Dec-2025 22:09:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Dec-2025 22:09:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Dec-2025 22:09:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Dec-2025 22:09:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Dec-2025 22:09:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Dec-2025 22:09:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Dec-2025 22:09:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Dec-2025 22:09:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [30-Dec-2025 22:15:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [30-Dec-2025 22:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [30-Dec-2025 22:15:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [30-Dec-2025 22:15:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [30-Dec-2025 22:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [30-Dec-2025 22:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [30-Dec-2025 22:15:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [30-Dec-2025 22:15:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [30-Dec-2025 22:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [30-Dec-2025 22:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [30-Dec-2025 22:15:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [30-Dec-2025 22:15:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [30-Dec-2025 22:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [30-Dec-2025 22:15:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [30-Dec-2025 22:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [30-Dec-2025 22:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [30-Dec-2025 22:15:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [30-Dec-2025 22:15:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2026 07:25:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2026 07:25:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2026 07:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2026 07:25:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2026 07:25:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2026 07:25:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2026 07:25:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2026 07:25:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2026 07:25:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2026 07:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2026 07:25:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2026 07:25:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2026 07:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2026 07:25:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2026 07:25:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2026 07:25:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2026 07:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2026 07:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2026 07:31:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2026 07:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2026 07:31:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2026 07:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2026 07:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2026 07:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2026 07:31:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2026 07:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2026 07:31:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2026 07:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2026 07:31:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2026 07:31:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2026 07:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2026 07:31:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2026 07:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2026 07:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2026 07:31:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2026 07:31:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2026 15:34:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2026 15:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2026 15:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2026 15:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2026 15:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2026 15:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2026 15:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2026 15:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2026 15:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2026 15:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2026 15:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2026 15:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2026 15:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2026 15:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2026 15:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2026 15:34:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2026 15:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2026 15:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2026 15:39:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2026 15:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2026 15:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2026 15:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2026 15:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2026 15:39:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2026 15:39:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2026 15:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2026 15:39:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2026 15:39:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2026 15:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2026 15:39:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2026 15:39:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2026 15:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2026 15:39:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2026 15:39:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2026 15:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2026 15:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2026 18:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2026 18:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2026 18:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2026 18:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2026 18:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2026 18:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2026 18:01:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2026 18:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2026 18:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2026 18:01:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2026 18:01:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2026 18:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2026 18:01:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2026 18:01:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2026 18:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2026 18:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2026 18:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2026 18:01:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [01-Jan-2026 18:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [01-Jan-2026 18:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [01-Jan-2026 18:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [01-Jan-2026 18:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [01-Jan-2026 18:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [01-Jan-2026 18:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [01-Jan-2026 18:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [01-Jan-2026 18:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [01-Jan-2026 18:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [01-Jan-2026 18:06:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [01-Jan-2026 18:06:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [01-Jan-2026 18:06:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [01-Jan-2026 18:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [01-Jan-2026 18:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [01-Jan-2026 18:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [01-Jan-2026 18:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [01-Jan-2026 18:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [01-Jan-2026 18:06:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jan-2026 15:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jan-2026 15:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jan-2026 15:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jan-2026 15:33:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jan-2026 15:33:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jan-2026 15:33:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jan-2026 15:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jan-2026 15:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jan-2026 15:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jan-2026 15:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jan-2026 15:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jan-2026 15:33:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jan-2026 15:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jan-2026 15:33:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jan-2026 15:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jan-2026 15:33:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jan-2026 15:33:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jan-2026 15:33:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [02-Jan-2026 15:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [02-Jan-2026 15:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [02-Jan-2026 15:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [02-Jan-2026 15:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [02-Jan-2026 15:41:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [02-Jan-2026 15:41:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [02-Jan-2026 15:41:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [02-Jan-2026 15:41:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [02-Jan-2026 15:41:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [02-Jan-2026 15:41:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [02-Jan-2026 15:41:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [02-Jan-2026 15:41:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [02-Jan-2026 15:41:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [02-Jan-2026 15:41:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [02-Jan-2026 15:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [02-Jan-2026 15:42:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [02-Jan-2026 15:42:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [02-Jan-2026 15:42:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 00:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 00:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 00:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 00:51:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 00:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 00:51:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 00:51:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 00:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 00:51:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 00:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 00:51:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 00:51:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 00:51:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 00:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 00:51:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 00:51:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 00:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 00:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 00:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 00:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 00:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 00:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 00:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 00:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 00:57:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 00:57:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 00:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 00:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 00:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 00:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 00:57:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 00:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 00:57:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 00:57:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 00:57:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 00:57:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 09:53:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 09:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 09:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 09:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 09:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 09:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 09:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 09:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 09:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 09:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 09:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 09:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 09:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 09:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 09:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 09:54:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 09:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 09:54:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 09:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 09:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 09:54:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 09:54:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 09:54:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 09:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 09:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 09:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 09:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 09:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 09:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 09:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 09:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 09:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 09:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 09:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 09:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 09:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 09:55:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 09:55:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 09:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 09:55:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 09:55:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 09:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 09:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 09:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 09:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 09:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 09:55:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 09:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 09:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 09:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 09:55:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 09:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 09:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 09:55:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 09:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 09:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 09:55:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 09:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 09:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 09:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 09:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 09:55:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 09:55:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 09:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 09:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 09:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 09:55:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 09:55:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 09:55:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 09:55:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 09:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 09:55:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 09:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 09:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 09:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 09:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 09:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 09:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 09:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 09:57:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 09:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 09:57:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 09:57:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 09:57:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 09:57:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 09:57:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 09:57:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 09:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 09:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 09:57:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 12:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 12:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 12:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 12:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 12:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 12:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 12:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 12:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 12:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 12:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 12:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 12:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 12:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 12:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 12:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 12:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 12:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 12:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 12:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 12:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 12:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 12:01:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 12:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 12:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 12:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 12:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 12:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 12:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 12:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 12:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 12:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 12:01:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 12:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 12:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 12:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 12:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 12:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 12:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 12:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 12:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 12:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 12:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 12:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 12:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 12:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 12:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 12:01:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 12:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 12:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 12:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 12:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 12:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 12:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 12:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 12:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 12:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 12:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 12:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 12:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 12:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 12:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 12:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 12:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 12:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 12:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 12:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 12:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 12:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 12:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 12:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 12:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 12:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [03-Jan-2026 12:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [03-Jan-2026 12:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [03-Jan-2026 12:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [03-Jan-2026 12:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [03-Jan-2026 12:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [03-Jan-2026 12:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [03-Jan-2026 12:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [03-Jan-2026 12:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [03-Jan-2026 12:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [03-Jan-2026 12:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [03-Jan-2026 12:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [03-Jan-2026 12:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [03-Jan-2026 12:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [03-Jan-2026 12:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [03-Jan-2026 12:01:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [03-Jan-2026 12:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [03-Jan-2026 12:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [03-Jan-2026 12:01:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jan-2026 13:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jan-2026 13:56:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jan-2026 13:56:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jan-2026 13:56:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jan-2026 13:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jan-2026 13:56:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jan-2026 13:56:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jan-2026 13:56:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jan-2026 13:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jan-2026 13:56:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jan-2026 13:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jan-2026 13:56:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jan-2026 13:56:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jan-2026 13:56:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jan-2026 13:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jan-2026 13:56:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jan-2026 13:56:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jan-2026 13:56:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [04-Jan-2026 14:02:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [04-Jan-2026 14:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [04-Jan-2026 14:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [04-Jan-2026 14:02:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [04-Jan-2026 14:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [04-Jan-2026 14:02:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [04-Jan-2026 14:02:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [04-Jan-2026 14:02:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [04-Jan-2026 14:02:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [04-Jan-2026 14:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [04-Jan-2026 14:02:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [04-Jan-2026 14:02:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [04-Jan-2026 14:02:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [04-Jan-2026 14:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [04-Jan-2026 14:02:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [04-Jan-2026 14:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [04-Jan-2026 14:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [04-Jan-2026 14:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 09:38:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 09:38:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 09:38:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 09:38:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 09:38:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 09:38:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 09:38:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 09:38:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 09:38:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 09:38:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 09:38:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 09:38:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 09:38:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 09:38:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 09:38:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 09:38:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 09:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 09:38:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 09:44:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 09:44:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 09:44:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 09:44:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 09:44:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 09:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 09:44:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 09:44:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 09:44:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 09:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 09:44:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 09:44:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 09:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 09:44:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 09:44:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 09:44:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 09:44:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 09:44:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 10:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 10:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 10:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 10:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 10:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 10:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 10:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 10:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 10:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 10:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 10:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 10:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 10:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 10:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 10:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 10:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 10:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 10:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 10:18:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 10:18:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 10:18:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 10:18:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 10:18:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 10:18:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 10:18:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 10:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 10:18:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 10:18:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 10:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 10:18:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 10:18:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 10:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 10:18:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 10:18:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 10:18:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 10:18:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 11:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 11:53:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 11:53:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 11:53:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 11:53:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 11:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 11:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 11:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 11:53:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 11:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 11:53:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 11:53:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 11:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 11:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 11:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 11:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 11:53:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 11:53:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 11:59:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 11:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 11:59:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 11:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 11:59:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 11:59:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 11:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 11:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 11:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 11:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 11:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 11:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 11:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 11:59:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 11:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 11:59:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 11:59:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 11:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 20:06:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 20:06:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 20:06:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 20:06:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 20:06:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 20:06:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 20:06:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 20:06:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 20:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 20:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 20:06:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 20:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 20:06:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 20:06:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 20:06:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 20:06:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 20:06:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 20:06:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 20:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 20:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 20:12:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 20:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 20:12:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 20:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 20:12:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 20:12:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 20:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 20:12:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 20:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 20:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 20:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 20:12:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 20:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 20:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 20:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 20:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 20:46:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 20:46:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 20:46:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 20:46:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 20:46:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 20:46:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 20:46:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 20:46:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 20:46:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 20:46:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 20:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 20:46:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 20:46:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 20:46:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 20:46:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 20:46:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 20:46:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 20:46:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 20:54:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 20:54:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 20:54:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 20:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 20:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 20:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 20:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 20:54:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 20:54:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 20:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 20:54:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 20:54:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 20:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 20:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 20:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 20:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 20:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 20:54:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 21:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 21:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 21:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 21:34:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 21:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 21:34:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 21:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 21:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 21:34:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 21:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 21:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 21:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 21:34:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 21:34:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 21:34:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 21:34:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 21:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 21:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 22:00:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 22:00:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 22:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 22:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 22:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 22:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 22:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 22:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 22:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 22:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 22:00:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 22:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 22:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 22:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 22:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 22:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 22:01:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 22:01:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 22:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 22:36:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 22:36:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 22:36:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 22:36:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 22:36:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 22:36:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 22:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 22:36:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 22:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 22:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 22:36:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 22:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 22:36:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 22:37:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 22:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 22:37:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 22:37:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 22:43:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 22:43:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 22:43:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 22:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 22:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 22:43:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 22:43:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 22:43:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 22:43:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 22:43:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 22:43:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 22:43:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 22:43:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 22:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [05-Jan-2026 22:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 22:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 22:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 22:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 23:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [05-Jan-2026 23:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [05-Jan-2026 23:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [05-Jan-2026 23:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [05-Jan-2026 23:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [05-Jan-2026 23:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [05-Jan-2026 23:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [05-Jan-2026 23:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [05-Jan-2026 23:14:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [05-Jan-2026 23:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [05-Jan-2026 23:14:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [05-Jan-2026 23:14:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [05-Jan-2026 23:14:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [05-Jan-2026 23:14:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [05-Jan-2026 23:14:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [05-Jan-2026 23:14:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [05-Jan-2026 23:14:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [05-Jan-2026 23:14:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 00:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 00:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 00:28:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 00:28:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 00:28:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 00:28:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 00:28:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 00:28:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 00:28:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 00:28:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 00:28:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 00:28:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 00:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 00:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 00:29:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 00:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 00:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 00:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 00:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 00:29:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 00:29:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 00:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 00:29:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 00:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 00:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 00:29:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 00:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 00:29:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 00:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 00:29:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 00:29:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 00:29:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 00:29:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 00:29:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 00:29:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 00:29:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 00:54:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 00:54:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 00:54:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 00:54:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 00:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 00:54:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 00:54:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 00:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 00:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 00:54:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 00:54:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 00:54:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 00:54:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 00:54:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 00:54:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 00:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 00:54:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 00:54:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 01:47:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 01:47:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 01:47:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 01:47:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 01:47:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 01:47:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 01:47:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 01:47:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 01:47:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 01:47:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 01:47:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 01:47:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 01:47:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 01:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 01:47:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 01:47:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 01:47:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 01:47:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 02:12:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 02:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 02:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 02:12:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 02:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 02:12:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 02:12:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 02:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 02:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 02:12:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 02:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 02:13:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 02:13:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 02:13:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 02:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 02:13:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 02:13:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 02:13:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 04:44:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 04:44:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 04:44:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 04:44:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 04:44:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 04:44:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 04:44:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 04:44:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 04:44:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 04:44:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 04:44:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 04:44:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 04:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 04:44:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 04:44:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 04:44:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 04:44:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 04:44:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 08:41:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 08:41:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 08:41:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 08:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 08:41:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 08:41:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 08:41:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 08:41:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 08:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 08:41:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 08:41:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 08:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 08:41:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 08:41:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 08:41:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 08:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 08:41:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 08:41:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 08:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 08:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 08:43:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 08:43:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 08:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 08:43:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 08:43:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 08:43:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 08:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 08:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 08:43:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 08:43:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 08:43:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 08:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 08:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 08:43:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 08:43:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 08:43:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 08:48:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 08:48:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 08:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 08:48:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 08:48:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 08:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 08:48:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 08:48:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 08:48:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 08:48:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 08:48:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 08:48:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 08:48:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 08:48:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 08:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 08:48:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 08:48:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 08:48:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 08:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 08:49:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 08:49:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 08:49:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 08:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 08:49:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 08:49:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 08:49:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 08:49:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 08:49:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 08:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 08:49:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 08:49:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 08:49:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 08:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 08:49:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 08:49:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 08:49:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 09:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 09:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 09:17:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 09:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 09:17:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 09:17:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 09:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 09:17:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 09:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 09:17:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 09:17:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 09:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 09:17:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 09:17:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 09:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 09:17:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 09:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 09:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [06-Jan-2026 09:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [06-Jan-2026 09:23:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [06-Jan-2026 09:23:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [06-Jan-2026 09:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [06-Jan-2026 09:23:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [06-Jan-2026 09:23:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [06-Jan-2026 09:23:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [06-Jan-2026 09:23:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [06-Jan-2026 09:23:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [06-Jan-2026 09:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [06-Jan-2026 09:23:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [06-Jan-2026 09:23:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [06-Jan-2026 09:23:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [06-Jan-2026 09:23:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [06-Jan-2026 09:23:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [06-Jan-2026 09:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [06-Jan-2026 09:23:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [06-Jan-2026 09:23:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2026 13:06:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2026 13:06:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2026 13:06:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2026 13:06:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2026 13:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2026 13:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2026 13:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2026 13:07:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2026 13:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2026 13:07:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2026 13:07:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2026 13:07:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2026 13:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2026 13:07:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2026 13:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2026 13:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2026 13:07:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2026 13:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2026 14:36:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2026 14:36:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2026 14:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2026 14:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2026 14:36:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2026 14:36:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2026 14:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2026 14:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2026 14:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2026 14:36:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2026 14:36:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2026 14:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2026 14:36:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2026 14:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2026 14:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2026 14:36:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2026 14:36:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2026 14:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2026 15:20:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2026 15:20:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2026 15:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2026 15:20:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2026 15:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2026 15:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2026 15:20:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2026 15:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2026 15:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2026 15:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2026 15:20:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2026 15:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2026 15:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2026 15:20:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2026 15:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2026 15:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2026 15:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2026 15:20:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2026 17:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2026 17:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2026 17:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2026 17:03:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2026 17:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2026 17:03:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2026 17:03:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2026 17:03:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2026 17:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2026 17:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2026 17:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2026 17:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2026 17:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2026 17:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2026 17:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2026 17:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2026 17:03:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2026 17:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2026 22:45:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2026 22:45:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2026 22:45:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2026 22:45:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2026 22:45:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2026 22:45:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2026 22:45:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2026 22:45:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2026 22:45:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2026 22:45:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2026 22:45:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2026 22:45:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2026 22:45:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2026 22:45:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2026 22:45:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2026 22:45:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2026 22:45:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2026 22:45:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [08-Jan-2026 22:51:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [08-Jan-2026 22:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [08-Jan-2026 22:51:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [08-Jan-2026 22:51:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [08-Jan-2026 22:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [08-Jan-2026 22:51:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [08-Jan-2026 22:51:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [08-Jan-2026 22:51:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [08-Jan-2026 22:51:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [08-Jan-2026 22:51:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [08-Jan-2026 22:51:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [08-Jan-2026 22:51:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [08-Jan-2026 22:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [08-Jan-2026 22:51:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [08-Jan-2026 22:51:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [08-Jan-2026 22:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [08-Jan-2026 22:51:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [08-Jan-2026 22:51:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2026 05:19:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2026 05:19:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2026 05:19:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2026 05:19:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2026 05:19:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2026 05:19:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2026 05:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2026 05:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2026 05:19:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2026 05:20:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2026 05:20:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2026 05:20:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2026 05:20:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2026 05:20:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2026 05:20:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2026 05:20:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2026 05:20:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2026 05:20:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2026 05:29:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2026 05:29:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2026 05:29:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2026 05:29:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2026 05:29:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2026 05:29:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2026 05:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2026 05:29:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2026 05:29:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2026 05:29:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2026 05:29:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2026 05:29:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2026 05:29:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2026 05:29:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2026 05:29:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2026 05:29:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2026 05:29:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2026 05:29:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [09-Jan-2026 23:14:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [09-Jan-2026 23:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [09-Jan-2026 23:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [09-Jan-2026 23:14:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [09-Jan-2026 23:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [09-Jan-2026 23:14:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [09-Jan-2026 23:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [09-Jan-2026 23:14:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [09-Jan-2026 23:14:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [09-Jan-2026 23:14:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [09-Jan-2026 23:14:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [09-Jan-2026 23:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [09-Jan-2026 23:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [09-Jan-2026 23:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [09-Jan-2026 23:14:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [09-Jan-2026 23:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [09-Jan-2026 23:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [09-Jan-2026 23:14:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2026 08:29:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2026 08:29:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2026 08:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2026 08:29:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2026 08:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2026 08:30:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2026 08:30:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2026 08:30:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2026 08:30:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2026 08:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2026 08:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2026 08:30:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2026 08:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2026 08:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2026 08:30:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2026 08:30:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2026 08:30:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2026 08:30:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2026 15:57:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2026 15:57:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2026 15:57:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2026 15:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2026 15:57:33 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2026 15:57:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2026 15:57:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2026 15:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2026 15:57:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2026 15:57:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2026 15:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2026 15:57:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2026 15:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2026 15:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2026 15:57:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2026 15:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2026 15:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2026 15:57:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2026 16:02:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2026 16:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2026 16:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2026 16:02:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2026 16:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2026 16:02:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2026 16:02:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2026 16:02:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2026 16:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2026 16:03:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2026 16:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2026 16:03:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2026 16:03:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2026 16:03:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2026 16:03:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2026 16:03:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2026 16:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2026 16:03:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2026 19:31:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2026 19:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2026 19:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2026 19:31:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2026 19:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2026 19:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2026 19:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2026 19:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2026 19:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2026 19:31:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2026 19:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2026 19:31:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2026 19:31:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2026 19:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2026 19:31:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2026 19:31:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2026 19:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2026 19:31:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [10-Jan-2026 19:38:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [10-Jan-2026 19:38:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [10-Jan-2026 19:38:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [10-Jan-2026 19:38:30 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [10-Jan-2026 19:38:31 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [10-Jan-2026 19:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [10-Jan-2026 19:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [10-Jan-2026 19:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [10-Jan-2026 19:38:34 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [10-Jan-2026 19:38:35 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [10-Jan-2026 19:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [10-Jan-2026 19:38:36 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [10-Jan-2026 19:38:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [10-Jan-2026 19:38:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [10-Jan-2026 19:38:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [10-Jan-2026 19:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [10-Jan-2026 19:38:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [10-Jan-2026 19:38:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 07:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 07:00:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 07:00:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 07:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 07:00:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 07:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 07:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 07:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 07:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jan-2026 07:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 07:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 07:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 07:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 07:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 07:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 07:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 07:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 07:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 07:27:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 07:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jan-2026 07:27:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 07:27:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 07:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 07:27:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 07:27:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 07:27:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 07:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 07:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 07:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 07:27:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 07:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 07:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 07:27:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 07:27:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 07:27:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 07:27:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 07:33:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 07:33:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jan-2026 07:33:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 07:33:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 07:33:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 07:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 07:33:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 07:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 07:33:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 07:33:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 07:33:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 07:33:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 07:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 07:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 07:33:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 07:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 07:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 07:33:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 14:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jan-2026 14:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 14:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 14:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 14:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 14:58:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 14:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 14:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 14:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 14:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 14:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 14:58:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 14:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 14:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 14:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 14:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 14:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 14:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jan-2026 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 14:58:37 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 14:58:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 14:58:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 14:58:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 14:58:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 14:58:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 14:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 14:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jan-2026 14:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 14:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 14:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 14:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 14:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 14:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 14:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 14:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 14:58:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 14:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 14:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 14:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 14:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 14:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 14:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 14:58:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 15:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 15:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [11-Jan-2026 15:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 15:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 15:00:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 15:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 15:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 15:00:25 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 15:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 15:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 15:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 15:00:26 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 15:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 15:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 15:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 15:00:28 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 15:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 15:00:29 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 18:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [11-Jan-2026 18:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [11-Jan-2026 18:37:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [11-Jan-2026 18:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [11-Jan-2026 18:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [11-Jan-2026 18:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [11-Jan-2026 18:37:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [11-Jan-2026 18:37:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [11-Jan-2026 18:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [11-Jan-2026 18:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [11-Jan-2026 18:37:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [11-Jan-2026 18:37:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [11-Jan-2026 18:37:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [11-Jan-2026 18:37:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [11-Jan-2026 18:37:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [11-Jan-2026 18:37:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [11-Jan-2026 18:37:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [11-Jan-2026 18:37:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2026 06:22:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2026 06:22:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2026 06:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2026 06:22:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2026 06:22:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2026 06:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2026 06:22:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2026 06:22:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2026 06:22:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2026 06:22:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2026 06:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2026 06:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2026 06:22:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2026 06:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2026 06:22:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2026 06:22:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2026 06:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2026 06:22:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2026 06:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2026 06:28:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2026 06:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2026 06:28:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2026 06:28:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2026 06:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2026 06:28:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2026 06:28:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2026 06:28:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2026 06:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2026 06:28:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2026 06:28:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2026 06:28:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2026 06:28:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2026 06:28:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2026 06:28:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2026 06:28:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2026 06:28:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2026 07:46:38 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2026 07:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2026 07:46:39 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2026 07:46:40 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2026 07:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2026 07:46:41 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2026 07:46:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2026 07:46:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2026 07:46:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2026 07:46:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2026 07:46:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2026 07:46:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2026 07:46:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2026 07:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2026 07:46:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2026 07:46:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2026 07:46:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2026 07:46:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2026 07:52:42 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2026 07:52:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2026 07:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2026 07:52:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2026 07:52:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2026 07:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2026 07:52:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2026 07:52:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2026 07:52:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2026 07:52:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2026 07:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2026 07:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2026 07:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2026 07:52:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2026 07:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2026 07:52:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2026 07:52:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2026 07:52:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2026 13:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2026 13:50:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2026 13:50:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2026 13:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2026 13:50:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2026 13:50:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2026 13:50:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2026 13:50:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2026 13:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2026 13:50:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2026 13:50:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2026 13:50:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2026 13:50:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2026 13:50:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2026 13:50:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2026 13:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2026 13:50:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2026 13:50:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [12-Jan-2026 13:56:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [12-Jan-2026 13:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [12-Jan-2026 13:56:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [12-Jan-2026 13:56:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [12-Jan-2026 13:56:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [12-Jan-2026 13:56:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [12-Jan-2026 13:56:16 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [12-Jan-2026 13:56:17 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [12-Jan-2026 13:56:18 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [12-Jan-2026 13:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [12-Jan-2026 13:56:19 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [12-Jan-2026 13:56:20 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [12-Jan-2026 13:56:21 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [12-Jan-2026 13:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [12-Jan-2026 13:56:22 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [12-Jan-2026 13:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [12-Jan-2026 13:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [12-Jan-2026 13:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jan-2026 12:07:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jan-2026 12:07:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jan-2026 12:07:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jan-2026 12:07:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jan-2026 12:07:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jan-2026 12:07:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jan-2026 12:07:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jan-2026 12:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jan-2026 12:07:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jan-2026 12:07:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jan-2026 12:07:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jan-2026 12:07:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jan-2026 12:07:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jan-2026 12:07:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jan-2026 12:07:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jan-2026 12:07:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jan-2026 12:07:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jan-2026 12:07:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jan-2026 12:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jan-2026 12:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jan-2026 12:13:44 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jan-2026 12:13:45 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jan-2026 12:13:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jan-2026 12:13:46 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jan-2026 12:13:47 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jan-2026 12:13:48 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jan-2026 12:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jan-2026 12:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jan-2026 12:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jan-2026 12:13:51 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jan-2026 12:13:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jan-2026 12:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jan-2026 12:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jan-2026 12:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jan-2026 12:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jan-2026 12:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jan-2026 15:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jan-2026 15:55:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jan-2026 15:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jan-2026 15:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jan-2026 15:55:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jan-2026 15:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jan-2026 15:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jan-2026 15:55:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jan-2026 15:55:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jan-2026 15:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jan-2026 15:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jan-2026 15:55:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jan-2026 15:55:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jan-2026 15:55:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jan-2026 15:55:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jan-2026 15:55:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jan-2026 15:55:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jan-2026 15:55:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jan-2026 18:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jan-2026 18:00:52 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jan-2026 18:00:53 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jan-2026 18:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jan-2026 18:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jan-2026 18:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jan-2026 18:00:56 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jan-2026 18:00:57 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jan-2026 18:00:58 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jan-2026 18:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jan-2026 18:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jan-2026 18:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jan-2026 18:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jan-2026 18:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jan-2026 18:01:02 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jan-2026 18:01:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jan-2026 18:01:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jan-2026 18:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [14-Jan-2026 18:07:03 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php on line 17 [14-Jan-2026 18:07:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Revisions_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:18 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php on line 18 [14-Jan-2026 18:07:04 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php on line 17 [14-Jan-2026 18:07:05 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php on line 17 [14-Jan-2026 18:07:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php on line 17 [14-Jan-2026 18:07:06 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Posts_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php:20 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php on line 20 [14-Jan-2026 18:07:07 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php on line 17 [14-Jan-2026 18:07:08 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php on line 17 [14-Jan-2026 18:07:09 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [14-Jan-2026 18:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php on line 17 [14-Jan-2026 18:07:10 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [14-Jan-2026 18:07:11 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php on line 17 [14-Jan-2026 18:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [14-Jan-2026 18:07:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php on line 17 [14-Jan-2026 18:07:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [14-Jan-2026 18:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php on line 17 [14-Jan-2026 18:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php on line 17 [14-Jan-2026 18:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php on line 17 [17-Jan-2026 03:53:12 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php on line 17 [17-Jan-2026 03:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 17 [17-Jan-2026 03:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php on line 17 [17-Jan-2026 03:53:13 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:17 Stack trace: #0 {main} thrown in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php on line 17 [17-Jan-2026 03:53:14 UTC] PHP Fatal error: Uncaught Error: Class 'WP_REST_Controller' not found in /home/aussies6/public_html/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:17 Stack trace: #0 {ma